/* Studio Diana - shared stylesheet
   Soft elegant salon theme: blush pink, white, beige, dark text. */

/* ---------- Theme tokens ---------- */
:root {
    --primary:        #A0615A;
    --primary-hover:  #8B4F48;
    --primary-soft:   #FCE4E0;
    --beige:          #F5EFE6;
    --beige-dark:     #E8DFD0;
    --bg:             #FFFBF8;
    --card:           #FFFFFF;
    --text:           #1F2937;
    --text-muted:     #6B7280;
    --border:         #E5E7EB;
    --success:        #10B981;
    --warning:        #F59E0B;
    --danger:         #EF4444;
    --shadow-sm:      0 1px 2px rgba(31, 41, 55, 0.04);
    --shadow:         0 4px 12px rgba(31, 41, 55, 0.06);
    --shadow-lg:      0 12px 32px rgba(31, 41, 55, 0.10);
    --radius:         12px;
    --radius-lg:      18px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }

/* ---------- Layout primitives ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

/* ---------- Top navbar (public site) ---------- */
.navbar {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.3px;
}
.brand span { color: var(--primary); }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* ---------- Hero (landing) ---------- */
.hero {
    position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}
.hero p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 32px;
}

.hero .container-narrow {
	position: relative;
	z-index: 2;
	background: rgba(255, 255, 255, 0.75);
	padding: 40px;
	border-radius: 24px;
	text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
    text-decoration: none;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(233, 122, 141, 0.25);
}
.btn-primary:hover { background: var(--primary-hover); color: #fff; }
.btn-secondary {
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost {
    background: transparent;
    color: var(--text-muted);
}
.btn-ghost:hover { color: var(--primary); }
.btn-danger {
    background: var(--danger);
    color: #fff;
}
.btn-danger:hover { background: #DC2626; color: #fff; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------- Cards ---------- */
.card {
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 32px;
    border: 1px solid var(--border);
}
.card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}
.card-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

/* ---------- Forms ---------- */
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 122, 141, 0.15);
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ---------- Booking flow ---------- */
.booking-section {
    padding: 48px 0;
}
.booking-step {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.step-number {
    width: 32px; height: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}
.step-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
}

/* Service / therapist option cards */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}
.option-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    cursor: pointer;
    transition: all 0.15s;
    text-align: left;
}
.option-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.option-card.selected {
    border-color: var(--primary);
    background: var(--primary-soft);
}
.option-card-name {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}
.option-card-meta {
    font-size: 13px;
    color: var(--text-muted);
}
.option-card-price {
    margin-top: 8px;
    font-weight: 600;
    color: var(--primary);
}

/* Time-slot grid */
.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}
.slot-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
}
.slot-card:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
    transform: translateY(-1px);
}
.slot-time {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}
.slot-therapist {
    font-size: 12px;
    color: var(--text-muted);
}

/* Empty / loading states */
.empty-state {
    text-align: center;
    padding: 32px 16px;
    color: var(--text-muted);
}
.empty-state-icon {
    font-size: 36px;
    margin-bottom: 12px;
    opacity: 0.5;
}

/* ---------- Modal ---------- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(31, 41, 55, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.modal-backdrop.open { display: flex; }
.modal {
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    animation: modalIn 0.2s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.modal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
}
.modal-close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
}
.modal-summary {
    background: var(--primary-soft);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
    font-size: 14px;
}
.modal-summary div { margin: 4px 0; }
.modal-summary strong { color: var(--text); }
.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

/* ---------- Alerts / toasts ---------- */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 16px;
}
.alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.alert-info    { background: var(--primary-soft); color: var(--text); border: 1px solid var(--primary); }

/* ---------- Auth pages ---------- */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.auth-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    max-width: 440px;
    width: 100%;
}
.auth-card .brand {
    text-align: center;
    display: block;
    margin-bottom: 8px;
    font-size: 26px;
}
.auth-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 600;
}
.auth-footer {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ---------- Dashboard layout (admin / therapist / client) ---------- */
.app-shell {
    display: flex;
    min-height: 100vh;
}
.sidebar {
    width: 240px;
    background: var(--card);
    border-right: 1px solid var(--border);
    padding: 0 0 24px 0;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
.sidebar > a.brand {
    display: block;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid var(--border);
}
.sidebar > a.brand img {
    width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    margin: 0 16px 4px 16px;
}
.sidebar-link:hover {
    background: var(--primary-soft);
    color: var(--primary);
}
.sidebar-link.active {
    background: var(--primary);
    color: #fff;
}
.sidebar-link.active:hover {
    background: var(--primary-hover);
    color: #fff;
}
.sidebar-section {
    padding: 12px 28px 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}
.main-content {
    flex: 1;
    padding: 32px 40px;
    overflow-x: auto;
}
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}
.page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
}

/* Mobile sidebar toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 12px;
    cursor: pointer;
    font-size: 20px;
}
@media (max-width: 900px) {
    .app-shell { flex-direction: column; }
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 1px solid var(--border);
        display: none;
    }
    .sidebar.open { display: block; }
    .menu-toggle { display: inline-block; }
    .main-content { padding: 24px 20px; }
}

/* ---------- Tables ---------- */
.table-wrapper {
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}
.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.table th {
    text-align: left;
    padding: 14px 16px;
    background: var(--beige);
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--bg); }

/* Status pills */
.pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pill-pending   { background: #FEF3C7; color: #92400E; }
.pill-confirmed { background: #DBEAFE; color: #1E40AF; }
.pill-completed { background: #D1FAE5; color: #065F46; }
.pill-cancelled { background: #FEE2E2; color: #991B1B; }
.pill-no_show   { background: #F3F4F6; color: #4B5563; }

/* Stat cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.stat-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--primary);
}

/* Calendar */
/* ---------- Time-grid calendar ---------- */
.cal-outer {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
/* sticky day-header row */
.cal-day-headers {
    display: grid;
    grid-template-columns: 56px repeat(var(--cal-cols, 7), 1fr);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--card);
    z-index: 10;
}
.cal-corner { border-right: 1px solid var(--border); }
.cal-day-head {
    padding: 10px 6px;
    text-align: center;
    border-right: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
.cal-day-head.today {
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 0;
}
.cal-day-head span { display: block; font-size: 20px; font-weight: 700; color: inherit; }
/* scrollable body */
.cal-body-wrap { overflow-y: auto; max-height: 680px; }
.cal-body {
    display: grid;
    grid-template-columns: 56px repeat(var(--cal-cols, 7), 1fr);
    position: relative;
}
/* time axis */
.cal-time-axis { border-right: 1px solid var(--border); }
.cal-time-slot {
    height: 60px;
    padding: 4px 6px 0;
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
    border-top: 1px solid var(--border);
    white-space: nowrap;
}
/* day columns */
.cal-day-col {
    position: relative;
    border-right: 1px solid var(--border);
}
.cal-day-col.today { background: rgba(233,122,141,0.03); }
.cal-hour-line {
    height: 60px;
    border-top: 1px solid var(--border);
    position: relative;
}
.cal-hour-line::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 30px;
    border-top: 1px dashed rgba(0,0,0,0.07);
}
/* event cards */
.cal-event {
    position: absolute;
    left: 3px;
    right: 3px;
    border-radius: 6px;
    padding: 4px 7px;
    font-size: 12px;
    line-height: 1.35;
    overflow: hidden;
    cursor: pointer;
    transition: filter 0.12s, box-shadow 0.12s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.10);
    border-left: 3px solid rgba(0,0,0,0.15);
    z-index: 2;
}
.cal-event:hover { filter: brightness(0.94); box-shadow: 0 3px 8px rgba(0,0,0,0.16); }
.cal-event-time { font-weight: 700; font-size: 11px; opacity: 0.75; }
.cal-event-client { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-event-service { opacity: 0.75; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* status colours */
.cal-ev-pending   { background: #FEF3C7; color: #78350F; }
.cal-ev-confirmed { background: #DBEAFE; color: #1E3A8A; }
.cal-ev-completed { background: #D1FAE5; color: #064E3B; }
.cal-ev-cancelled { background: #FEE2E2; color: #7F1D1D; }
.cal-ev-no_show   { background: #F3F4F6; color: #374151; }
/* therapist colour palette (admin view) */
.cal-th-0 { background: #EDE9FE; color: #4C1D95; border-left-color: #7C3AED; }
.cal-th-1 { background: #FCE7F3; color: #831843; border-left-color: #DB2777; }
.cal-th-2 { background: #ECFDF5; color: #064E3B; border-left-color: #059669; }
.cal-th-3 { background: #FEF3C7; color: #78350F; border-left-color: #D97706; }
.cal-th-4 { background: #E0F2FE; color: #0C4A6E; border-left-color: #0284C7; }
.cal-th-5 { background: #FFF7ED; color: #7C2D12; border-left-color: #EA580C; }
.cal-th-6 { background: #F0FDF4; color: #14532D; border-left-color: #16A34A; }
.cal-th-7 { background: #FDF4FF; color: #581C87; border-left-color: #9333EA; }
/* mobile: single-day view */
@media (max-width: 700px) {
    .cal-day-headers { grid-template-columns: 56px 1fr; }
    .cal-body        { grid-template-columns: 56px 1fr; }
    .cal-day-head:not(.cal-mobile-visible),
    .cal-day-col:not(.cal-mobile-visible) { display: none; }
}

/* Responsive table → card on mobile */
@media (max-width: 700px) {
    .table thead { display: none; }
    .table tr {
        display: block;
        margin-bottom: 12px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 10px;
    }
    .table td {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border: none;
    }
    .table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-muted);
        font-size: 12px;
        text-transform: uppercase;
    }
}

/* Utilities */
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.hidden { display: none !important; }

/* Slike - hero slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slider .slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    justify-content: center;
    align-items: center;
}
.hero-slider .slide.active {
    display: flex;
}
.slide-img-landscape {
    flex: 2;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slide-img-portrait {
    flex: 1;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width:600px) {
	.slot-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}
	.slot-card {
		padding: 10px 8px;
		min-height: auto;
	}
	.slot-time {
		font-size: 18px;
	}
	.slot-therapist {
		font-size: 12px;
	}
}

/* ---------- Footer ---------- */
.site-footer {
    background: #FCE4E0;
    border-top: 1px solid var(--border);
    margin-top: 60px;
    padding: 48px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
.footer-col { color: var(--text); }
.footer-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}
.footer-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}
.footer-text a {
    color: var(--text);
    font-weight: 600;
}
.footer-text a:hover { color: var(--primary); }
.footer-social {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.15s;
    border: 1px solid var(--border);
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.footer-map iframe {
    box-shadow: var(--shadow-sm);
}
.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

/* ---------- Loyalty checkbox in booking modal ---------- */
.loyalty-option {
    background: var(--beige);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 14px;
}
.loyalty-option label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}
.loyalty-option input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    flex-shrink: 0;
}
.loyalty-option-text strong { color: var(--primary); }
.loyalty-option-hint {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 2px;
}

/* ---------- Pending-fee badge on client dashboard ---------- */
.fee-warning {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}
.fee-warning strong { font-weight: 700; }

.sidebar > a.brand img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    min-width: 100% !important;
}

.sidebar > a.brand {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

