.schedule-time {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: #eff6ff;
    padding: 14px 18px;
    border-radius: 18px;
}
.time-main-hour span{
	    align-items: center;
    gap: 12px;
    font-size: 20px !important;
    font-weight: 800;
    line-height: 1;
    color: #FF8102;
    text-align: center;
	
}
.schedule-time-full{
	width: 100%;
    text-align: center;
}
.schedule_day_block{
			margin-bottom:30px;
		}

		.schedule_day_title{
			position:sticky;
			top:0;
			z-index:2;

			background: linear-gradient(135deg, #d86c00, #FF8102);
			color:#fff;

			padding:14px 18px;

			font-size:20px;
			font-weight:700;

			border-radius:14px;
			margin-bottom:16px;

			box-shadow:0 2px 12px rgba(0,0,0,.08);
		}

		.information__elec{

			background:#fff;

			border:1px solid #e5e7eb;

			border-radius:18px;

			padding:18px;

			margin-bottom:16px;

			box-shadow:
			0 2px 8px rgba(0,0,0,.04);

			transition:all .2s ease;
		}

		.information__elec:hover{
			transform:translateY(-2px);

			box-shadow:
			0 6px 18px rgba(0,0,0,.08);
		}

		.information__top{
			display:flex;
			align-items:center;
			justify-content:space-between;
			gap:10px;

			margin-bottom:16px;
		}

		.information__time{
			font-size:16px;
			font-weight:700;
			color:#111827;
		}

		.information__elec--status{
			padding:7px 14px;
			border-radius:999px;

			font-size:12px;
			font-weight:700;
			letter-spacing:.4px;
		}

		.status-approved{
			background:#dbeafe;
			color:#1d4ed8;
		}

		.status-running{
			background:#dcfce7;
			color:#15803d;
		}

		.status-done{
			background:#f3f4f6;
			color:#6b7280;
		}

		.status-cancel{
			background:#fee2e2;
			color:#dc2626;
		}

		.information__elec--item{
			display:flex;
			gap:14px;

			padding:10px 0;

			border-top:1px dashed #e5e7eb;
		}

		.information__elec--item:first-child{
			border-top:none;
		}

		.item__main{
			min-width:120px;

			font-weight:700;

			color:#374151;
		}

		.item__content{
			flex:1;

			line-height:1.7;

			color:#111827;

			word-break:break-word;
		}

		@media(max-width:768px){

			.information__top{
				flex-direction:column;
				align-items:flex-start;
			}

			.information__elec--item{
				flex-direction:column;
				gap:6px;
			}

			.item__main{
				min-width:auto;
			}

			.schedule_day_title{
				font-size:17px;
			}
		}