.ot-container {
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	max-width: 600px;
	margin: 0 auto;
	box-sizing: border-box;
}

.ot-header {
	margin-bottom: 25px;
}

.ot-title {
	margin: 0 0 8px 0;
	font-size: 24px;
	font-weight: 700;
}

.ot-subtitle {
	margin: 0 0 15px 0;
	font-size: 16px;
}

.ot-buttons-wrap {
	display: flex;
	gap: 10px;
	justify-content: inherit;
	flex-wrap: wrap;
	margin-top: 15px;
}

.ot-action-btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: background-color 0.2s, color 0.2s;
	cursor: pointer;
}

.ot-tabs-nav {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e5e7eb;
	padding-bottom: 10px;
	overflow-x: auto;
}

.ot-tab-btn {
	padding: 8px 16px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	transition: background-color 0.2s, color 0.2s;
}

.ot-tabs-content {
	position: relative;
}

.ot-tab-pane {
	display: none;
}

.ot-tab-pane.ot-active {
	display: block;
}

.ot-table {
	display: flex;
	flex-direction: column;
}

.ot-day-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	border-bottom: 1px solid #f3f4f6;
	transition: background-color 0.2s;
	border-radius: 6px;
}

.ot-day-row:last-child {
	border-bottom: none;
}

.ot-day-label {
	font-weight: 600;
}

.ot-day-hours {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
}

.ot-time-slot {
	font-size: 14px;
}
