/* © 2021 Peachy Software LLC */

/* Main container for Day of Week settings */
.dow-settings-container {
	max-width: 1200px;
	margin: 20px 0;
}

/* Info banner styling */
.dow-info-banner {
	background: linear-gradient(135deg, #3e57ca 0%, #335283 100%);
	border: none;
	border-radius: 12px;
	padding: 0;
	margin-bottom: 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
	overflow: hidden;
}

.dow-info-content {
	display: flex;
	gap: 30px;
	padding: 30px;
	color: white;
}

.dow-info-logo {
	flex-shrink: 0;
}

.dow-info-text {
	flex: 1;
}

.dow-info-text h2 {
	color: white;
	font-size: 1.5em;
	margin-top: 0;
	margin-bottom: 15px;
}

.dow-info-text p,
.dow-info-text ol,
.dow-info-text li {
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.6;
}

.dow-info-text a {
	color: #ffd700;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.dow-info-text a:hover {
	color: #ffed4e;
}

.dow-info-text strong,
.dow-info-text b {
	color: white;
}

/* Options section */
.dow-options-section {
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 25px 30px;
	margin-bottom: 25px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.dow-options-section h3 {
	margin-top: 0;
	margin-bottom: 20px;
	color: black;
	font-size: 1.3em;
	border-bottom: 2px solid #667eea;
	padding-bottom: 10px;
}

.dow-option-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
	align-items: flex-start;
}

.dow-option-label {
	min-width: 200px;
	font-weight: 600;
	color: #1d2327;
	padding-top: 8px;
}

.dow-option-control {
	flex: 1;
}

.dow-option-control select {
	min-width: 300px;
	padding: 8px 12px;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	font-size: 14px;
	transition: border-color 0.2s;
}

.dow-option-control select:focus {
	border-color: #667eea;
	outline: none;
	box-shadow: 0 0 0 1px #667eea;
}

.dow-option-control p {
	margin: 8px 0 0 0;
	color: #646970;
	font-size: 13px;
	line-height: 1.5;
}

/* Day editor containers */
.dow_day {
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 20px 25px;
	margin-bottom: 20px;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.dow_day:hover {
	border-color: #667eea;
	box-shadow: 0 4px 8px rgba(102, 126, 234, 0.15);
}

.dw_label {
	font-weight: 500;
	font-size: 20px;
	margin: 0 0 15px 0;
	color: #1d2327;
	display: flex;
	align-items: center;
	'gap: 5px;
}


/* Submit button styling */
.dow-submit-button {
	margin-top: 30px;
}

.dow-submit-button .button-primary {
	background: linear-gradient(135deg, #3e57ca 0%, #335283 100%);
	border: none;
	padding: 10px 30px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 6px;
	transition: all 0.2s;
	box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.dow-submit-button .button-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(102, 126, 234, 0.4);
}

/* Footer branding */
.dow-footer {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
	text-align: center;
	color: #646970;
}

.dow-footer img {
	max-width: 200px;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.dow-footer img:hover {
	opacity: 1;
}

.dow-footer p {
	margin: 10px 0;
	font-size: 13px;
}

/* Responsive adjustments */
@media screen and (max-width: 782px) {
	.dow-info-content {
		flex-direction: column;
		gap: 20px;
	}

	.dow-option-row {
		flex-direction: column;
		gap: 10px;
	}

	.dow-option-label {
		min-width: auto;
		padding-top: 0;
	}

	.dow-option-control select {
		min-width: 100%;
	}
}
