/*
|--------------------------------------------------------------------------
| GROUP
|--------------------------------------------------------------------------
*/

.schedule-group{
	margin-bottom:32px;
}

/*
|--------------------------------------------------------------------------
| DATE HEADER
|--------------------------------------------------------------------------
*/
.schedule-wrapper{
	margin:24px 0;
}


.schedule-group-date{
	position:sticky;
	top:2px;
	z-index:10;

	display:inline-flex;
	align-items:center;

	min-width:280px;

	background: linear-gradient(135deg, #d86c00, #FF8102);

	color:#fff;

	padding:14px 26px;

	border-radius:18px;

	font-size:20px;
	font-weight:800;
	letter-spacing:.3px;

	box-shadow:
		0 12px 30px rgba(0,0,0,.18);

	margin-bottom:18px;
}

/*
|--------------------------------------------------------------------------
| ITEMS
|--------------------------------------------------------------------------
*/

.schedule-group-items{
	display:flex;
	flex-direction:column;
	gap:18px;
}

/*
|--------------------------------------------------------------------------
| CARD
|--------------------------------------------------------------------------
*/

.schedule-item{
	background:#fff;

	border-radius:22px;

	padding:22px;

	border:1px solid #edf2f7;

	box-shadow:
		0 10px 30px rgba(15,23,42,.06);
}

/*
|--------------------------------------------------------------------------
| TOP
|--------------------------------------------------------------------------
*/

.schedule-top{
	display:flex;
	align-items:flex-start;
	justify-content:space-between;

	gap:18px;

	flex-wrap:wrap;

	margin-bottom:18px;
}

/*
|--------------------------------------------------------------------------
| TIME
|--------------------------------------------------------------------------
*/

.schedule-time{
	display:flex;
	flex-direction:column;
	align-items:flex-start;

	gap:6px;

	background:#eff6ff;

	padding:14px 18px;

	border-radius:18px;
}

.schedule-time-main{
	display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px !important;
    font-weight: 800;
    line-height: 1;
    color: #FF8102;
    text-align: center;
}

.schedule-time-main i{
	font-style:normal;
	font-size:18px;
	color:#60a5fa;
}

.schedule-time-full{
	    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    line-height: 1.5;
    text-align: center;
    width: 100%;
}

/*
|--------------------------------------------------------------------------
| STATUS
|--------------------------------------------------------------------------
*/

.schedule-status{
	padding:10px 16px;

	border-radius:999px;

	font-size:13px;
	font-weight:800;

	letter-spacing:.4px;

	white-space:nowrap;
}

.status-approved{
	background:#dcfce7;
	color:#166534;
}

.status-running{
	background:#dbeafe;
	color:#1d4ed8;
}

.status-done{
	background:#f3f4f6;
	color:#4b5563;
}

.status-delay{
	background:#fee2e2;
	color:#b91c1c;
}

/*
|--------------------------------------------------------------------------
| ROW
|--------------------------------------------------------------------------
*/

.schedule-row{
	display:flex;
	align-items:flex-start;

	gap:18px;

	padding:14px 0;

	border-top:1px dashed #e5e7eb;
}

.schedule-label{
	width:140px;
	min-width:140px;

	font-weight:700;
	color:#374151;

	line-height:1.6;
}

.schedule-value{
	flex:1;

	line-height:1.8;
	color:#111827;

	word-break:break-word;
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

	.schedule-group-date{
		top:70px;

		min-width:220px;

		font-size:17px;

		padding:12px 18px;

		border-radius:14px;
	}

	.schedule-item{
		padding:18px;
		border-radius:18px;
	}

	.schedule-top{
		flex-direction:column;
		align-items:flex-start;
	}

	.schedule-time{
		width:100%;
	}

	.schedule-time-main{
		font-size:18px;
	}

	.schedule-row{
		flex-direction:column;
		gap:6px;
	}

	.schedule-label{
		width:auto;
		min-width:auto;
	}
}
