

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 64px;
}

body {
    background: #eeeeeb;
    color: #4b4b4b;

    font-family: Georgia, "Times New Roman", serif;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    height: 64px;

    position: relative;

    display: flex;
    align-items: center;

    padding: 0 5%;

    background: #f5f5f2;

    border-bottom: 1px solid #aaa;
}


/* Logo */

.logo {
    position: absolute;
    left: 5%;

    font-size: 14px;
    letter-spacing: 1px;

    white-space: nowrap;
}


/* Navigation */

.navigation {
    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 45px;
}

.navigation a {
    color: #444;

    text-decoration: none;

    font-size: 14px;

    transition: opacity 0.2s;
}

.navigation a:hover {
    opacity: 0.55;
}


/* User icon */

.profile {
    position: absolute;
    right: 5%;

    font-size: 15px;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    background: #f5f5f2;

    border-bottom: 1px solid #aaa;
}


/*
    Desktop hero

    Text and image sit beside each other.
*/

.hero-content {
    max-width: 1200px;

    min-height: 470px;

    margin: auto;

    padding: 70px 5%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(70px, 10vw, 150px);
}


/* Hero text */

.hero-text {
    text-align: center;

    width: 400px;
}

.hero-text h1 {
    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.05;

    font-weight: normal;

    letter-spacing: 2px;
}

.hero-text p {
    margin-top: 25px;

    font-family: Arial, sans-serif;

    font-size: 12px;

    letter-spacing: 0.5px;
}


/* Hero image */

.hero-image {
    width: min(45vw, 500px);
    aspect-ratio: 1.25 / 1;

    flex-shrink: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;

    box-shadow: 4px 4px 3px #aaa;
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    background: #dededb;

    padding: 35px 5% 80px;
}

.services h2 {
    text-align: center;

    font-size: 14px;

    font-weight: normal;

    margin-bottom: 55px;

    letter-spacing: 0.5px;
}


/* Cards */

.services-container {
    max-width: 1050px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.service-card {
    height: 280px;

    background: #f8f8f7;

    padding: 15px;

    border-right: 2px solid #bdbdbb;
    border-bottom: 2px solid #bdbdbb;

    transition: transform 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card span {
    font-size: 14px;

    letter-spacing: 1px;
}

.service-card h3 {
    margin: 70px 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: normal;
}

.service-card p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

.no-home-services {
    grid-column: 1 / -1;
    text-align: center;
    color: #777;
}


/* =====================================================
   OUR WORKS
===================================================== */

.works {
    background: #202020;

    padding: 22px 0 30px;

    color: white;

    overflow: hidden;
}

.works h2 {
    text-align: center;

    font-size: 14px;

    font-weight: normal;

    margin-bottom: 35px;
}


/* Carousel */

.carousel {
    position: relative;

    width: 100%;
}

.carousel-window {
    width: 100%;

    overflow: hidden;
}

.carousel-track {
    display: flex;

    transition: transform 0.5s ease;
}


/*
    Desktop:
    3 images visible at once.
*/

.work {
    flex: 0 0 33.333333%;

    height: 300px;
}

.work img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* Carousel buttons */

.carousel-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 45px;
    height: 60px;

    border: none;

    background: rgba(0, 0, 0, 0.55);

    color: white;

    cursor: pointer;

    opacity: 0;

    transition: opacity 0.2s;
}

.carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}


/* Carousel dots */

.dots {
    display: flex;

    justify-content: center;

    gap: 8px;

    margin-top: 18px;
}

.dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #777;

    cursor: pointer;

    transition: 0.2s;
}

.dot.active {
    background: white;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    min-height: 150px;

    background: #eeeeeb;

    border-top: 3px solid #aaa;

    text-align: center;

    padding: 20px 5%;
}

.footer h2 {
    font-size: 14px;

    font-weight: normal;

    margin-bottom: 25px;
}


/* Contact information */

.contact-details {
    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 30px;
}

.contact-item {
    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 12px;
}

.contact-item i {
    font-size: 16px;
}

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   PAGE
========================= */

body.admin-page {
    background: #dededb;
    color: #4b4b4b;

    font-family: Arial, Helvetica, sans-serif;

    min-height: 100vh;
}


/* =========================
   MAIN CONTAINER
========================= */

.admin-page {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding-top: 30px;
    padding-bottom: 20px;
}


/* =========================
   BRAND
========================= */

.brand-name {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 26px;
    font-weight: normal;

    letter-spacing: 1px;

    margin-bottom: 54px;

    text-align: center;
}


/* =========================
   LOGIN BOX
========================= */

.login-box {
    width: 512px;
    min-height: 580px;

    background: #f7f7f6;

    padding: 34px 40px;

    box-shadow:
        5px 5px 4px rgba(0, 0, 0, 0.30);

    text-align: center;
}


/* =========================
   ADMIN ICON
========================= */

.admin-icon {
    width: 54px;
    height: 54px;

    margin: 0 auto 8px;

    border-radius: 50%;

    background: #dedede;

    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-icon i {
    font-size: 27px;
    color: #222;
}


/* =========================
   ADMIN TITLE
========================= */

.login-box h2 {
    font-size: 16px;
    font-weight: 500;

    margin-bottom: 91px;
}


/* =========================
   FORM
========================= */

#loginForm {
    width: 100%;
    text-align: left;
}


/* =========================
   INPUT GROUP
========================= */

.input-group {
    margin-bottom: 14px;
}

.input-group label {
    display: block;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 9px;
}


/* =========================
   INPUT
========================= */

.input-group input {
    width: 100%;
    height: 40px;

    border: none;

    border-top: 3px solid #aaa;
    border-left: 3px solid #aaa;

    background: #d9d9d9;

    outline: none;

    padding: 8px 10px;

    font-size: 14px;
}

.input-group input:focus {
    background: #e1e1e1;

    border-top-color: #777;
    border-left-color: #777;
}


/* =========================
   LOGIN BUTTON
========================= */

.login-button {
    display: block;

    margin: 35px auto 0;

    padding: 10px 35px;

    border: none;

    background: #4b4b4b;
    color: white;

    font-size: 12px;

    cursor: pointer;

    transition: 0.2s;
}

.login-button:hover {
    background: #333;
}

.password-help {
    margin-top: 12px;
    text-align: right;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.password-help a {
    color: #4b4b4b;
}

.password-description {
    margin: -60px 0 30px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

.password-box {
    min-height: 430px;
}


/* =========================
   LOGIN MESSAGE
========================= */

#loginMessage {
    text-align: center;

    margin-top: 15px;

    font-size: 12px;
}

.success {
    color: #3d6b3d;
}

.error {
    color: #9b3d3d;
}


/* =========================
   BACK HOME
========================= */

.back-home {
    margin-top: 14px;
    

    color: #4b4b4b;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition: opacity 0.2s;
}

.back-home:hover {
    opacity: 0.55;
}

.back-home i {
    margin-right: 5px;
}


.back-home2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;

  margin-top: 14px;
  margin-bottom: 50px;

  color: #4b4b4b;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
.back-home2:hover {
  opacity: 0.7;
}

/* =========================================
   USER LOGGED-IN PAGE
========================================= */

.user-page {
  background: #f5f5f2;
  color: #4b4b4b;
}


/* HEADER */

.user-header {
  height: 52px;
  background: #f5f5f2;
  border-bottom: 2px solid #aaa;

  display: flex;
  align-items: center;

  position: relative;
  padding: 0 25px;
}

.user-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: .5px;
}

.user-navigation {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 40px;
}

.user-navigation a {
  color: #4b4b4b;
  text-decoration: none;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.user-icons {
  margin-left: auto;

  display: flex;
  gap: 25px;

  font-size: 18px;
}


/* WELCOME SECTION */

.welcome-section {
  min-height: 475px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 110px;

  padding: 60px 5%;
  background: #f5f5f2;
}


/* WELCOME TEXT */

.welcome-text {
  width: 280px;
  text-align: center;
}

.welcome-text h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.05;
  font-weight: normal;
}

.welcome-text p {
  margin-top: 12px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}


/* BUTTONS */

.user-options {
  width: min(440px, 45vw);

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.user-option {
  height: 54px;

  background: #d9d9d9;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  color: #4b4b4b;
  text-decoration: none;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;

  border-bottom: 2px solid #aaa;
  box-shadow: 2px 2px 2px #bbb;
}

.user-option i {
  position: absolute;
  right: 16px;

  font-size: 15px;
}

.user-option:hover {
  background: #d0d0d0;
}


/* ORDER PROGRESS */

.order-progress {
  min-height: 235px;

  background: #dededb;

  border-top: 3px solid #aaa;

  padding: 20px 20px 40px;

  text-align: center;
}

.order-progress h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: normal;

  margin-bottom: 28px;
}

.order-form {
  width: min(425px, 90%);
  margin: auto;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-form input {
  width: 100%;
  height: 54px;

  border: none;
  border-bottom: 2px solid #aaa;

  background: #f8f8f7;

  padding: 0 20px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;

  outline: none;
}

.order-form input::placeholder {
  color: #999;
}

.order-form input:focus {
  border-bottom-color: #777;
}


/* USER PAGE FOOTER */

.user-page .footer {
  background: #202020;
  color: white;

  min-height: 170px;

  border-top: 3px solid #aaa;
}

.user-page .footer h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.user-page .contact-item {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

/* =========================================
   NOTIFICATION PAGE
========================================= */

.notification-page {
  background: #f5f5f2;
  color: #4b4b4b;
}


/* Notification icon links */

.user-icons a {
  color: #4b4b4b;
  text-decoration: none;
}


/* Main container */

.notification-container {
  min-height: calc(100vh - 52px - 170px);

  padding: 55px 20px 60px;

  text-align: center;
}

.notification-container h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: normal;

  margin-bottom: 40px;
}


/* Notification list */

/* =========================================
   NOTIFICATION PAGE
========================================= */

.notification-page {
  background: #f5f5f2;
  color: #4b4b4b;
}

.notification-container {
  min-height: calc(100vh - 52px - 170px);

  padding: 70px 20px 60px;

  text-align: center;
}

.notification-container h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: normal;

  margin-bottom: 40px;
}


/* Message Box */

.notification-message {
  width: min(650px, 90%);
  height: 180px;

  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: center;

  background: #dededb;

  border-bottom: 2px solid #aaa;
  box-shadow: 2px 2px 2px #bbb;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  color: #777;
}


/* Back */

.notification-container .back-home {
  justify-content: center;

  margin-top: 30px;
  margin-bottom: 0;
}

/* =========================================
   PRE-BOOKING PAGE
========================================= */

.prebooking-page {
    background: #f5f5f2;
    color: #4b4b4b;
    font-family: Georgia, "Times New Roman", serif;
}


/* HEADER */

.prebooking-page .user-header {
    height: 72px;
    background: #f5f5f2;
    border-bottom: 2px solid #aaa;

    display: flex;
    align-items: center;

    padding: 0 38px;
}

.prebooking-page .user-logo {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.prebooking-page .user-icons {
    margin-left: auto;
    display: flex;
    gap: 70px;
}

.prebooking-page .user-icons a {
    color: #4b4b4b;
    text-decoration: none;
    font-size: 21px;
}


/* MAIN */

.prebooking-container {
    padding: 18px 38px 25px;
}


/* BACK BUTTON */

.page-back {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dededb;
    color: #555;

    text-decoration: none;
    font-size: 20px;

    box-shadow: 2px 2px 2px #aaa;

    margin-bottom: 26px;
}


/* PRE-BOOKING TITLE */

.prebooking-title {
    width: 235px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dededb;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;

    box-shadow: 2px 2px 2px #aaa;

    margin-bottom: 20px;
}


/* FORM LAYOUT */

.prebooking-form {
    width: 100%;
    max-width: 1250px;

    display: grid;

    grid-template-columns:
        minmax(200px, 1fr)
        minmax(200px, 1fr)
        minmax(300px, 1.65fr);

    column-gap: 36px;
    row-gap: 20px;
}


/* FORM GROUP */

.prebooking-form .form-group {
    display: flex;
    flex-direction: column;
}


/* LABEL */

.prebooking-form .form-group > label {
    display: block;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;

    margin-bottom: 5px;
}


/* INPUTS */

.prebooking-form input[type="text"],
.prebooking-form textarea {
    width: 100%;

    background: #d9d9d9;

    border: none;
    border-left: 3px solid #aaa;
    border-top: 2px solid #aaa;

    outline: none;

    padding: 8px 12px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    box-sizing: border-box;
}


/* NORMAL INPUT HEIGHT */

.prebooking-form input[type="text"] {
    height: 52px;
}


/* TEXTAREA */

.prebooking-form textarea {
    resize: none;
}


/* SERVICE TYPE */

.service-type {
    grid-column: 1;
    grid-row: 1;
}


/* CLOTH MATERIAL */

.cloth-material {
    grid-column: 2;
    grid-row: 1;
}


/* SKETCH PICTURE */

.sketch-picture {
    grid-column: 3;
    grid-row: 1;
}


/* FILE BOX */

.file-box {
    width: 100%;
    height: 52px;

    background: #d9d9d9;

    border-left: 3px solid #aaa;
    border-top: 2px solid #aaa;

    display: flex;
    align-items: center;

    padding-left: 7px;

    box-sizing: border-box;
}


/* HIDE REAL FILE INPUT */

.file-box input[type="file"] {
    display: none;
}


/* CHOOSE BUTTON */

.choose-button {
    width: 110px !important;
    height: 30px !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    background: #f5f5f2;

    color: #888;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 17px !important;

    cursor: pointer;

    box-shadow: 2px 2px 2px #aaa;

    margin: 0 !important;
}


/* ADD-ONS */

.addons {
    grid-column: 1 / 3;
    grid-row: 2;
}

.addons textarea {
    height: 135px;
}


/* NOTES */

.notes {
    grid-column: 3;
    grid-row: 2 / 4;
}

.notes textarea {
    height: 237px;
}


/* PRICE */

.price {
    grid-column: 1;
    grid-row: 3;
}


/* COMPLETION TIME */

.completion-time {
    grid-column: 2;
    grid-row: 3;
}


/* PROCEED */

.proceed-button {
    grid-column: 1;
    grid-row: 4;

    width: 235px;
    height: 66px;

    margin-top: 18px;

    border: none;

    background: #dededb;
    color: #4b4b4b;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;

    box-shadow: 2px 2px 2px #aaa;

    cursor: pointer;
}

.proceed-button:hover {
    background: #d2d2d2;
}


/* Mobile */

@media (max-width: 600px) {

  .notification-container {
    padding: 45px 15px 45px;
  }

  .notification-container h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .notification-message {
    width: 100%;
    height: 150px;
    font-size: 13px;
  }

}

/* Back button */

.notification-container .back-home {
  justify-content: center;

  margin-top: 30px;
  margin-bottom: 0;
  padding-top: 20px;
}


/* Mobile */

@media (max-width: 600px) {

  .notification-container {
    padding: 35px 15px 45px;
  }

  .notification-container h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .notification-list {
    width: 100%;
    gap: 12px;
  }

  .notification-item {
    min-height: 75px;
    padding: 12px 10px;
  }

  .notification-symbol {
    width: 40px;
    font-size: 16px;
  }

  .notification-content h2 {
    font-size: 13px;
  }

  .notification-content p {
    font-size: 9px;
  }

  .notification-content span {
    font-size: 8px;
  }

}
/* =========================
   TABLET
========================= */

@media (max-width: 700px) {

    .admin-page {
        padding-top: 50px;
    }

    .brand-name {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .login-box {
        width: 80%;
        min-height: 500px;

        padding: 30px;
    }

    .login-box h2 {
        margin-bottom: 70px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 500px) {

    .admin-page {
        padding-top: 35px;
    }

    .brand-name {
        font-size: 17px;

        margin-bottom: 30px;
    }

    .login-box {
        width: 88%;
        min-height: 450px;

        padding: 25px 22px;

        box-shadow:
            3px 3px 3px rgba(0, 0, 0, 0.3);
    }

    .admin-icon {
        width: 48px;
        height: 48px;
    }

    .admin-icon i {
        font-size: 23px;
    }

    .login-box h2 {
        font-size: 14px;

        margin-bottom: 60px;
    }

    .input-group label {
        font-size: 11px;
    }

    .input-group input {
        height: 36px;
    }

    .login-button {
        margin-top: 28px;
    }

    .back-home {
        font-size: 11px;
    }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .navigation {
        gap: 25px;
    }

    .navigation a {
        font-size: 12px;
    }

    .hero-content {
        gap: 50px;

        padding: 55px 5%;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-image {
        width: 42vw;
    }

    .service-card {
        height: 240px;
    }

    .work {
        height: 240px;
    }
}

/* =========================================
   ADMIN DASHBOARD
========================================= */

.admin-dashboard-page {
    background: #f5f5f2;
    color: #4b4b4b;
}


/* HEADER */

.admin-header {
    height: 72px;

    background: #f5f5f2;

    border-bottom: 2px solid #aaa;

    display: flex;
    align-items: center;

    padding: 0 38px;
}

.admin-logo {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    letter-spacing: .5px;
}

.admin-icons {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 70px;
}

.admin-icons a {
    color: #4b4b4b;
    text-decoration: none;

    font-size: 21px;
}


/* MAIN DASHBOARD */

.admin-dashboard {
    min-height: calc(100vh - 72px);

    display: flex;
    align-items: center;
    justify-content: center;
}


/* WELCOME AREA */

.admin-welcome {
    width: min(1210px, 90%);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 110px;
}


/* WELCOME TEXT */

.admin-welcome-text {
    width: 370px;

    text-align: center;
}

.admin-welcome-text h1 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 58px;
    line-height: 1.05;

    font-weight: normal;
}

.admin-welcome-text p {
    margin-top: 20px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 24px;
    line-height: 1.35;
}


/* ADMIN BUTTONS */

.admin-options {
    width: 770px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 38px 30px;
}

.admin-option {
    height: 85px;

    background: #d9d9d9;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    color: #4b4b4b;

    text-decoration: none;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;

    border-bottom: 2px solid #aaa;

    box-shadow: 2px 2px 2px #bbb;

    transition: background .2s;
}

.admin-option:hover {
    background: #d0d0d0;
}

.admin-option i {
    position: absolute;

    right: 16px;

    font-size: 20px;
}

/* =========================================
   MANAGE BOOKING
========================================= */

.manage-booking-page {
    background: #f5f5f2;
    color: #4b4b4b;
}


/* MAIN */

.manage-booking-container {
    padding: 20px 43px 50px;
}


/* BACK BUTTON */

.manage-back {
    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dededb;

    color: #555;
    text-decoration: none;

    font-size: 25px;

    box-shadow: 2px 2px 2px #aaa;

    margin-bottom: 30px;
}


/* TITLE */

.manage-booking-title {
    width: 282px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dededb;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;

    box-shadow: 2px 2px 2px #aaa;

    margin-bottom: 60px;
}


/* TABLE */

.booking-table {
    width: 100%;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        1.2fr
        1.65fr;

    gap: 7px;
}


/* COLUMNS */

.booking-column {
    min-height: 485px;

    background: #d9d9d9;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 14px 20px 25px;

    box-sizing: border-box;
}


/* ROUNDED OUTER CORNERS */

.booking-column:first-child {
    border-radius: 16px 0 0 16px;
}

.booking-column:last-child {
    border-radius: 0 16px 16px 0;
}


/* COLUMN TITLE */

.booking-column h2 {
    margin: 0 0 43px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;
    font-weight: normal;

    text-align: center;

    white-space: nowrap;
}


/* BUTTONS */

.booking-column button {
    width: 138px;
    height: 34px;

    flex-shrink: 0;

    margin-bottom: 26px;

    border: none;
    border-radius: 14px;

    background: #f5f5f2;

    color: #aaa;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;

    box-shadow: 2px 3px 3px #aaa;

    cursor: pointer;
}


/* HOVER */

.booking-column button:hover {
    background: #eeeeeb;
    color: #777;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    /* Header */

    .header {
        height: 45px;

        padding: 0 14px;
    }

    .logo {
        position: static;

        font-size: 9px;
    }

    .navigation {
        position: static;

        transform: none;

        margin-left: auto;
        margin-right: auto;

        gap: 15px;
    }

    .navigation a {
        font-size: 8px;
    }

    .profile {
        position: static;

        font-size: 11px;
    }


    /* Hero */

    .hero-content {
        min-height: auto;

        padding: 35px 20px;

        flex-direction: column;

        gap: 35px;
    }

    .hero-text {
        width: 100%;

        order: 2;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 8px;

        margin-top: 12px;
    }

    .hero-image {
        order: 1;

        width: min(85vw, 400px);
    }


    /* Services */

    .services {
        padding: 18px 20px 55px;
    }

    .services h2 {
        font-size: 10px;

        margin-bottom: 30px;
    }

    .services-container {
        grid-template-columns: 1fr;

        gap: 18px;

        max-width: 350px;
    }

    .service-card {
        height: 180px;
    }

    .service-card h3 {
        margin-top: 42px;
        font-size: 21px;
    }


    /* Works */

    .works {
        padding-top: 14px;
    }

    .works h2 {
        font-size: 10px;

        margin-bottom: 25px;
    }

    /*
        On phone, one image is visible.
    */

    .work {
        flex: 0 0 100%;

        height: 220px;
    }

    .carousel-btn {
        width: 35px;
        height: 45px;

        opacity: 1;
    }


    /* Footer */

    .footer {
        min-height: 125px;

        padding: 12px 15px;
    }

    .footer h2 {
        font-size: 10px;

        margin-bottom: 15px;
    }

    .contact-details {
        gap: 12px;
    }

    .contact-item {
        font-size: 9px;
    }

    .contact-item i {
        font-size: 12px;
    }

}

@media (max-width: 700px) {

    .prebooking-form {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .prebooking-form .service-type,
    .prebooking-form .cloth-material,
    .prebooking-form .sketch-picture,
    .prebooking-form .addons,
    .prebooking-form .notes,
    .prebooking-form .price,
    .prebooking-form .completion-time {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
    }

    .prebooking-form .proceed-button {
        grid-column: auto;
        grid-row: auto;

        width: 180px;
        height: 52px;

        margin-top: 5px;
        margin-bottom: 20px;

        align-self: flex-start;

        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* =========================================
   CREATE CUSTOMER ID
========================================= */

.create-id-page {
    background: #f5f5f2;
    color: #4b4b4b;
}


/* MAIN */

.create-id-container {
    min-height: calc(100vh - 72px);

    padding: 20px 43px 50px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* BACK BUTTON */

.create-id-back {
    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dededb;

    color: #555;

    text-decoration: none;

    font-size: 25px;

    box-shadow: 2px 2px 2px #aaa;

    margin-bottom: 30px;
}


/* TITLE */

.create-id-title {
    width: 282px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dededb;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    box-shadow: 2px 2px 2px #aaa;

    margin-bottom: 35px;
}


/* FORM BOX */

.create-id-box {
    width: 500px;

    background: #eeeeeb;

    padding: 30px 45px 35px;

    box-sizing: border-box;

    box-shadow: 2px 2px 4px #aaa;

    align-self: center;

    text-align: center;
}


/* USER ICON */

.create-id-icon {
    width: 48px;
    height: 48px;

    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dededb;

    font-size: 21px;
}


/* FORM TITLE */

.create-id-box h2 {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: normal;

    margin-bottom: 25px;
}


/* INPUT GROUP */

.create-input-group {
    display: flex;
    flex-direction: column;

    text-align: left;

    margin-bottom: 17px;
}


/* LABEL */

.create-input-group label {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    margin-bottom: 6px;
}


/* INPUT */

.create-input-group input {
    width: 100%;
    height: 43px;

    box-sizing: border-box;

    background: #d9d9d9;

    border: none;

    border-left: 3px solid #aaa;
    border-top: 2px solid #aaa;

    outline: none;

    padding: 8px 10px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
}


/* CREATE BUTTON */

.create-id-button {
    width: 180px;
    height: 52px;

    margin-top: 10px;

    border: none;

    background: #dededb;

    color: #4b4b4b;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;

    box-shadow: 2px 2px 2px #aaa;

    cursor: pointer;
}


.create-id-button:hover {
    background: #d2d2d2;
}


/* MESSAGE */

#createIdMessage {
    min-height: 18px;

    margin-top: 15px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
}

/* =========================================
   VIEW CUSTOMER
========================================= */

.view-customer-page {
    background: #f5f5f2;
    color: #4b4b4b;
}


/* MAIN */

.view-customer-container {
    min-height: calc(100vh - 72px);

    padding: 20px 43px 50px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* BACK BUTTON */

.view-customer-back {
    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dededb;

    color: #555;

    text-decoration: none;

    font-size: 25px;

    box-shadow: 2px 2px 2px #aaa;

    margin-bottom: 30px;
}


/* TITLE */

.view-customer-title {
    width: 282px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dededb;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    box-shadow: 2px 2px 2px #aaa;

    margin-bottom: 45px;
}


/* CUSTOMER LIST BOX */

.customer-list {
    width: 100%;
    max-width: 1200px;

    min-height: 400px;

    margin: 0 auto;

    background: #d9d9d9;

    border-radius: 15px;

    box-shadow: 2px 2px 3px #aaa;

    overflow: hidden;
}


/* CUSTOMER LIST HEADER */

.customer-list-header {
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #d0d0d0;

    border-bottom: 2px solid #aaa;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
}


/* EMPTY MESSAGE */

.no-customers {
    min-height: 325px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 18px;

    color: #999;
}

/* =========================================
   MANAGE SERVICE
========================================= */

.manage-service-page {
    background: #f5f5f2;
    color: #4b4b4b;
}


/* MAIN */

.manage-service-container {
    min-height: calc(100vh - 72px);

    padding: 20px 43px 50px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* BACK BUTTON */

.manage-service-back {
    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dededb;

    color: #555;

    text-decoration: none;

    font-size: 25px;

    box-shadow: 2px 2px 2px #aaa;

    margin-bottom: 30px;
}


/* TITLE */

.manage-service-title {
    width: 282px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dededb;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    box-shadow: 2px 2px 2px #aaa;

    margin-bottom: 40px;
}


/* SERVICE AREA */

.service-management {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    gap: 18px;
}


/* SERVICE CARD */

.manage-service-card {
    min-height: 105px;

    background: #d9d9d9;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 30px;

    box-sizing: border-box;

    border-radius: 8px;

    box-shadow: 2px 2px 3px #aaa;
}


/* SERVICE INFORMATION */

.service-info h2 {
    margin: 0 0 7px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;

    font-weight: normal;
}


.service-info p {
    margin: 0 0 8px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    color: #666;
}


.service-info span {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    color: #777;
}


/* ACTION BUTTONS */

.service-actions {
    display: flex;

    gap: 12px;
}


.service-actions button {
    width: 100px;
    height: 38px;

    border: none;

    border-radius: 12px;

    background: #f5f5f2;

    color: #777;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    cursor: pointer;

    box-shadow: 2px 2px 3px #aaa;
}


.service-actions button:hover {
    background: #eeeeeb;
}


/* ADD SERVICE */

.add-service {
    width: 190px;
    height: 55px;

    margin-top: 10px;

    border: none;

    background: #dededb;

    color: #555;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;

    cursor: pointer;

    box-shadow: 2px 2px 3px #aaa;
}


.add-service i {
    margin-right: 8px;
}


.add-service:hover {
    background: #d2d2d2;
}

/* =========================================
   USER BOOKING
========================================= */

.user-booking-page {
    background: #f5f5f2;
    color: #4b4b4b;
}


/* MAIN */

.user-booking-container {
    min-height: calc(100vh - 72px);

    padding: 20px 43px 50px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* BACK */

.user-booking-back {
    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dededb;

    color: #555;

    text-decoration: none;

    font-size: 25px;

    box-shadow: 2px 2px 2px #aaa;

    margin-bottom: 30px;
}


/* TITLE */

.user-booking-title {
    width: 220px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dededb;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    box-shadow: 2px 2px 2px #aaa;

    margin-bottom: 35px;
}


/* FORM BOX */

.user-booking-box {
    width: 650px;

    margin: 0 auto;

    background: #dededb;

    padding: 30px 45px 40px;

    box-shadow: 2px 2px 3px #aaa;
}


/* FORM TITLE */

.user-booking-box h2 {
    text-align: center;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;

    font-weight: normal;

    margin-bottom: 30px;
}


/* INPUT GROUP */

.user-booking-input {
    display: flex;
    flex-direction: column;

    margin-bottom: 20px;
}


/* LABEL */

.user-booking-input label {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    margin-bottom: 7px;
}


/* INPUTS */

.user-booking-input input,
.user-booking-input select,
.user-booking-input textarea {

    width: 100%;

    box-sizing: border-box;

    border: none;

    border-left: 3px solid #aaa;
    border-top: 2px solid #aaa;

    background: #f5f5f2;

    outline: none;

    padding: 10px;

    color: #555;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
}


.user-booking-input input,
.user-booking-input select {
    height: 43px;
}


.user-booking-input textarea {
    resize: vertical;

    min-height: 110px;
}


/* SUBMIT */

.user-booking-submit {
    display: block;

    width: 180px;
    height: 50px;

    margin: 15px auto 0;

    border: none;

    background: #f5f5f2;

    color: #555;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;

    box-shadow: 2px 2px 3px #aaa;

    cursor: pointer;
}


.user-booking-submit:hover {
    background: #eeeeeb;
}


/* MESSAGE */

#bookingMessage {
    text-align: center;

    min-height: 18px;

    margin-top: 15px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
}

/* =========================================
   BOOKING STATUS
========================================= */

.booking-status-page {
    background: #f5f5f2;
    color: #4b4b4b;
}


/* MAIN */

.booking-status-container {
    min-height: calc(100vh - 72px);

    padding: 20px 43px 50px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* BACK */

.booking-status-back {
    width: 53px;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dededb;

    color: #555;

    text-decoration: none;

    font-size: 25px;

    box-shadow: 2px 2px 2px #aaa;

    margin-bottom: 30px;
}


/* TITLE */

.booking-status-title {
    width: 250px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dededb;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;

    box-shadow: 2px 2px 2px #aaa;

    margin-bottom: 45px;
}


/* STATUS BOX */

.booking-status-box {
    width: 600px;

    margin: 0 auto;

    background: #dededb;

    padding: 35px 45px 40px;

    box-shadow: 2px 2px 3px #aaa;

    text-align: center;
}


/* TITLE */

.booking-status-box h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;

    font-weight: normal;

    margin-bottom: 30px;
}


/* INPUT */

.status-input {
    text-align: left;

    margin-bottom: 20px;
}


.status-input label {
    display: block;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    margin-bottom: 7px;
}


.status-input input {
    width: 100%;
    height: 43px;

    box-sizing: border-box;

    border: none;

    border-left: 3px solid #aaa;
    border-top: 2px solid #aaa;

    background: #f5f5f2;

    padding: 10px;

    outline: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
}


/* CHECK BUTTON */

.check-status-button {
    width: 170px;
    height: 48px;

    border: none;

    background: #f5f5f2;

    color: #555;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 16px;

    box-shadow: 2px 2px 3px #aaa;

    cursor: pointer;
}


.check-status-button:hover {
    background: #eeeeeb;
}


/* RESULT */

.status-result {
    margin-top: 30px;

    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #d9d9d9;

    color: #999;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    padding: 15px;

    box-sizing: border-box;
}

/* =========================================
   ADMIN DASHBOARD MOBILE
========================================= */

@media (max-width: 700px) {

    .admin-header {
        height: 45px;
        padding: 0 14px;
    }

    .admin-logo {
        font-size: 9px;
    }

    .admin-icons {
        gap: 15px;
    }

    .admin-icons a {
        font-size: 12px;
    }


    .admin-dashboard {
        min-height: calc(100vh - 45px);

        padding: 45px 20px;
    }


    .admin-welcome {
        width: 100%;

        flex-direction: column;

        gap: 40px;
    }


    .admin-welcome-text {
        width: 100%;
    }

    .admin-welcome-text h1 {
        font-size: 38px;
    }

    .admin-welcome-text p {
        margin-top: 12px;

        font-size: 13px;
    }


    .admin-options {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 15px;
    }


    .admin-option {
        width: 100%;
        height: 55px;

        font-size: 15px;
    }

    .admin-option i {
        right: 14px;
        font-size: 14px;
    }

}

/* =========================================
   MANAGE BOOKING MOBILE
========================================= */

@media (max-width: 700px) {

    .manage-booking-container {
        padding: 15px;
    }


    .manage-back {
        width: 40px;
        height: 40px;

        font-size: 18px;

        margin-bottom: 20px;
    }


    .manage-booking-title {
        width: 200px;
        height: 55px;

        font-size: 18px;

        margin-bottom: 30px;
    }


    /* Allow table to scroll horizontally */

    .booking-table {
        width: max-content;

        grid-template-columns:
            150px
            150px
            150px
            170px
            200px;

        gap: 5px;

        overflow: visible;
    }


    .booking-column {
        min-height: 430px;

        padding: 12px 10px 20px;
    }


    .booking-column h2 {
        font-size: 18px;

        margin-bottom: 35px;
    }


    .booking-column button {
        width: 110px;
        height: 31px;

        font-size: 14px;

        margin-bottom: 22px;
    }


    .booking-column:first-child {
        border-radius: 12px 0 0 12px;
    }

    .booking-column:last-child {
        border-radius: 0 12px 12px 0;
    }


    /* Horizontal scrolling */

    .manage-booking-container {
        overflow-x: auto;
    }

}

/* =========================================
   CREATE ID MOBILE
========================================= */

@media (max-width: 700px) {

    .create-id-container {
        min-height: calc(100vh - 45px);

        padding: 15px 15px 40px;
    }


    .create-id-back {
        width: 40px;
        height: 40px;

        font-size: 18px;

        margin-bottom: 20px;
    }


    .create-id-title {
        width: 200px;
        height: 55px;

        font-size: 19px;

        margin-bottom: 30px;
    }


    .create-id-box {
        width: 100%;
        max-width: 420px;

        padding: 25px 25px 30px;

        align-self: center;
    }


    .create-id-icon {
        width: 42px;
        height: 42px;

        font-size: 18px;
    }


    .create-id-box h2 {
        font-size: 13px;
    }


    .create-input-group {
        margin-bottom: 15px;
    }


    .create-input-group label {
        font-size: 10px;
    }


    .create-input-group input {
        height: 40px;
    }


    .create-id-button {
        width: 160px;
        height: 48px;

        font-size: 16px;
    }

}

/* =========================================
   VIEW CUSTOMER MOBILE
========================================= */

@media (max-width: 700px) {

    .view-customer-container {
        min-height: calc(100vh - 45px);

        padding: 15px 15px 40px;
    }


    /* BACK */

    .view-customer-back {
        width: 40px;
        height: 40px;

        font-size: 18px;

        margin-bottom: 20px;
    }


    /* TITLE */

    .view-customer-title {
        width: 200px;
        height: 55px;

        font-size: 19px;

        margin-bottom: 30px;
    }


    /* CUSTOMER BOX */

    .customer-list {
        width: 100%;

        min-height: 350px;

        border-radius: 12px;
    }


    /* HEADER */

    .customer-list-header {
        height: 55px;

        font-size: 18px;
    }


    /* EMPTY MESSAGE */

    .no-customers {
        min-height: 295px;

        padding: 20px;

        font-size: 14px;
    }

}

/* =========================================
   MANAGE SERVICE MOBILE
========================================= */

@media (max-width: 700px) {

    .manage-service-container {
        min-height: calc(100vh - 45px);

        padding: 15px 15px 40px;
    }


    /* BACK */

    .manage-service-back {
        width: 40px;
        height: 40px;

        font-size: 18px;

        margin-bottom: 20px;
    }


    /* TITLE */

    .manage-service-title {
        width: 200px;
        height: 55px;

        font-size: 19px;

        margin-bottom: 30px;
    }


    /* SERVICE AREA */

    .service-management {
        width: 100%;

        gap: 15px;
    }


    /* SERVICE CARD */

    .manage-service-card {
        min-height: 150px;

        padding: 18px;

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    /* SERVICE TEXT */

    .service-info h2 {
        font-size: 19px;
    }


    .service-info p {
        font-size: 11px;
    }


    .service-info span {
        font-size: 10px;
    }


    /* BUTTONS */

    .service-actions {
        width: 100%;

        gap: 10px;
    }


    .service-actions button {
        width: 90px;
        height: 34px;

        font-size: 11px;
    }


    /* ADD */

    .add-service {
        width: 160px;
        height: 48px;

        font-size: 15px;

        margin-top: 5px;
    }

}

/* =========================================
   USER BOOKING MOBILE
========================================= */

@media (max-width: 700px) {

    .user-booking-container {
        min-height: calc(100vh - 45px);

        padding: 15px 15px 40px;
    }


    .user-booking-back {
        width: 40px;
        height: 40px;

        font-size: 18px;

        margin-bottom: 20px;
    }


    .user-booking-title {
        width: 170px;
        height: 55px;

        font-size: 19px;

        margin-bottom: 25px;
    }


    .user-booking-box {
        width: 100%;

        padding: 25px 20px 30px;

        box-sizing: border-box;
    }


    .user-booking-box h2 {
        font-size: 16px;

        margin-bottom: 25px;
    }


    .user-booking-input {
        margin-bottom: 16px;
    }


    .user-booking-input label {
        font-size: 10px;
    }


    .user-booking-input input,
    .user-booking-input select {
        height: 40px;

        font-size: 12px;
    }


    .user-booking-input textarea {
        min-height: 90px;

        font-size: 12px;
    }


    .user-booking-submit {
        width: 160px;
        height: 48px;

        font-size: 15px;
    }

}

/* =========================================
   BOOKING STATUS MOBILE
========================================= */

@media (max-width: 700px) {

    .booking-status-container {
        min-height: calc(100vh - 45px);

        padding: 15px;
    }


    .booking-status-back {
        width: 40px;
        height: 40px;

        font-size: 18px;

        margin-bottom: 20px;
    }


    .booking-status-title {
        width: 200px;
        height: 55px;

        font-size: 19px;

        margin-bottom: 30px;
    }


    .booking-status-box {
        width: 100%;

        padding: 25px 20px 30px;

        box-sizing: border-box;
    }


    .booking-status-box h2 {
        font-size: 16px;
    }


    .status-input label {
        font-size: 10px;
    }


    .status-input input {
        height: 40px;

        font-size: 12px;
    }


    .check-status-button {
        width: 150px;
        height: 45px;

        font-size: 14px;
    }


    .status-result {
        min-height: 75px;

        font-size: 12px;
    }

}

/* =========================================
   CUSTOMER MANAGEMENT
========================================= */

.customer-management {
    min-height: calc(100vh - 72px);
}

.customer-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin-bottom: 24px;
}

.customer-filter-form {
    display: flex;
    align-items: end;
    gap: 10px;
    flex-wrap: wrap;
}

.customer-filter-form label,
.customer-modal label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    font-weight: bold;
}

.customer-filter-form input,
.customer-filter-form select,
.customer-modal input {
    height: 42px;
    min-width: 240px;
    padding: 0 12px;
    border: 1px solid #c2c2bd;
    border-radius: 6px;
    background: #fff;
    box-sizing: border-box;
}

.booking-filter-form label {
    min-width: 180px;
}

.booking-filter-form select {
    height: 42px;
    padding: 0 10px;
    border: 1px solid #c2c2bd;
    border-radius: 6px;
    background: #fff;
}

.booking-list {
    max-width: 1500px;
}

.booking-table-data {
    min-width: 1250px;
}

.booking-record-section {
    overflow: hidden;
}

.booking-record-section .customer-table-wrap {
    margin: 0 24px 24px;
}

.booking-record-section .no-customers {
    margin: 0 24px 24px;
}

.change-password-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f5f2 0%, #e8e8e3 100%);
    color: #4b4b4b;
}

.change-password-container {
    max-width: 560px;
    margin: 0 auto;
    padding: 32px 20px 60px;
}

.change-password-card {
    margin-top: 20px;
    padding: 34px;
    border: 1px solid #d5d5cf;
    border-radius: 14px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 8px 24px rgba(75, 75, 75, .12);
}

.change-password-icon {
    color: #666;
    font-size: 30px;
}

.change-password-card h1 {
    margin: 14px 0 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
}

.change-password-card > p {
    margin: 0 0 24px;
    color: #777;
}

.change-password-card form {
    display: grid;
    gap: 16px;
}

.change-password-card label {
    display: grid;
    gap: 7px;
    font-size: 14px;
    font-weight: bold;
}

.change-password-card input {
    height: 44px;
    padding: 0 12px;
    border: 1px solid #c8c8c1;
    border-radius: 7px;
    background: #fff;
    box-sizing: border-box;
    font: inherit;
}

.change-password-card button {
    height: 48px;
    margin-top: 5px;
    border: 0;
    border-radius: 7px;
    background: #555;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.change-password-card button:hover {
    background: #333;
}

.logout-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    background: #555;
    color: #fff !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    text-decoration: none;
}

.logout-link:hover {
    background: #333;
}

.customer-filter-form button,
.customer-add-button,
.customer-view-button {
    border: 0;
    border-radius: 6px;
    padding: 12px 16px;
    background: #555;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.customer-filter-form a {
    padding: 12px 4px;
    color: #555;
}

.customer-add-button {
    background: #777;
    white-space: nowrap;
}

.customer-message {
    max-width: 1200px;
    padding: 12px 16px;
    border-radius: 6px;
}

.customer-message.success {
    background: #dcebdc;
    color: #2d6332;
}

.customer-message.error {
    background: #f4dddd;
    color: #8a3030;
}

.customer-list,
.customer-orders {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 28px;
    border-radius: 12px;
    background: #dededb;
    box-shadow: 2px 2px 3px #aaa;
    overflow: hidden;
}

.customer-list-header {
    display: flex;
    justify-content: space-between;
    padding: 20px 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
}

.customer-list-header span:last-child {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    align-self: center;
}

.customer-table-wrap {
    overflow-x: auto;
}

.customer-table {
    width: 100%;
    border-collapse: collapse;
    background: #f5f5f2;
    text-align: left;
}

.customer-table th,
.customer-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #d3d3ce;
    white-space: nowrap;
}

.customer-table th {
    background: #d2d2ce;
    font-size: 13px;
}

.customer-table td {
    font-size: 14px;
}

.customer-view-button {
    display: inline-block;
    padding: 8px 12px;
    font-size: 13px;
}

.no-customers {
    margin: 0;
    padding: 24px;
    background: #f5f5f2;
}

.customer-orders h2,
.customer-orders > p {
    margin-left: 24px;
}

.customer-orders h2 {
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
}

.customer-orders > p {
    margin-top: 0;
}

.customer-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 24px 22px;
}

.customer-detail-grid div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: 6px;
    background: #f5f5f2;
}

.customer-detail-grid span {
    color: #777;
    font-size: 12px;
}

.customer-detail-grid strong {
    font-size: 14px;
    overflow-wrap: anywhere;
}

.order-status {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 12px;
    background: #dededb;
}

.customer-modal {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, .4);
}

.customer-modal[hidden] {
    display: none;
}

.customer-modal-content {
    position: relative;
    width: min(420px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 30px;
    border-radius: 12px;
    background: #f5f5f2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .25);
}

.customer-modal-content h2 {
    margin-top: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
}

.customer-modal-content form {
    display: grid;
    gap: 14px;
}

.customer-modal-content select,
.customer-modal-content textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #c2c2bd;
    border-radius: 6px;
    background: #fff;
    box-sizing: border-box;
    font: inherit;
}

.customer-modal-content select {
    height: 42px;
}

.booking-form-note {
    margin: 0;
    color: #777;
    font-size: 12px;
}

/* Refined pre-booking form */
.prebooking-page {
    background: linear-gradient(135deg, #f5f5f2 0%, #e8e8e3 100%);
}

.prebooking-container {
    max-width: 1180px;
    min-height: calc(100vh - 72px);
    margin: 0 auto;
    padding: 32px 28px 60px;
}

.prebooking-title {
    width: auto;
    max-width: 360px;
    height: auto;
    justify-content: flex-start;
    padding: 18px 26px;
    border-radius: 10px;
    font-size: 28px;
    box-shadow: 0 5px 14px rgba(75, 75, 75, .12);
    margin-bottom: 24px;
}

.prebooking-container > .customer-message {
    max-width: 920px;
    margin: 0 0 18px;
}

.prebooking-form {
    max-width: 920px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px;
    border: 1px solid #d5d5cf;
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 8px 24px rgba(75, 75, 75, .12);
}

.prebooking-form .form-group {
    gap: 8px;
}

.prebooking-form .form-group > label {
    margin: 0;
    color: #454545;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: .2px;
}

.prebooking-form input[type="text"],
.prebooking-form select,
.prebooking-form textarea,
.prebooking-form input[type="file"] {
    width: 100%;
    min-height: 46px;
    border: 1px solid #c8c8c1;
    border-radius: 7px;
    background: #fff;
    color: #444;
    padding: 11px 13px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
}

.prebooking-form input[type="text"]:focus,
.prebooking-form select:focus,
.prebooking-form textarea:focus {
    border-color: #777;
    box-shadow: 0 0 0 3px rgba(119, 119, 119, .12);
}

.prebooking-form select {
    cursor: pointer;
}

.prebooking-form textarea {
    min-height: 132px;
    resize: vertical;
}

.prebooking-form .service-type,
.prebooking-form .cloth-material {
    grid-column: span 1;
}

.prebooking-form .sketch-picture,
.prebooking-form .notes {
    grid-column: 1 / -1;
}

.prebooking-form input[type="file"] {
    padding: 9px;
    cursor: pointer;
}

.prebooking-form input[type="file"]::file-selector-button {
    margin-right: 10px;
    padding: 8px 13px;
    border: 0;
    border-radius: 5px;
    background: #dededb;
    color: #4b4b4b;
    cursor: pointer;
}

.prebooking-form .booking-form-note {
    grid-column: 1 / -1;
    padding: 12px 14px;
    border-left: 3px solid #999;
    background: #efefeb;
    line-height: 1.5;
}

.prebooking-form .proceed-button {
    grid-column: 1 / -1;
    width: 100%;
    height: 52px;
    margin: 2px 0 0;
    border-radius: 7px;
    background: #555;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    box-shadow: none;
    transition: background .2s ease, transform .2s ease;
}

.prebooking-form .proceed-button:hover {
    background: #333;
    transform: translateY(-1px);
}

@media (max-width: 700px) {
    .prebooking-container {
        padding: 20px 15px 40px;
    }

    .prebooking-title {
        max-width: none;
        padding: 15px 18px;
        font-size: 23px;
    }

    .prebooking-form {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .prebooking-form .service-type,
    .prebooking-form .cloth-material,
    .prebooking-form .sketch-picture,
    .prebooking-form .notes,
    .prebooking-form .booking-form-note,
    .prebooking-form .proceed-button {
        grid-column: 1;
    }
}

.customer-modal-content .customer-add-button {
    margin-top: 6px;
}

.customer-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    border: 0;
    background: transparent;
    color: #555;
    font-size: 28px;
    cursor: pointer;
}

.service-management-page {
    min-height: calc(100vh - 72px);
}

.service-management {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 28px;
    border-radius: 12px;
    background: #dededb;
    box-shadow: 2px 2px 3px #aaa;
    overflow: hidden;
}

.service-management-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
}

.service-management-header h2 {
    margin: 0 0 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
}

.service-management-header p {
    margin: 0;
    font-size: 14px;
}

.service-management-header .add-service {
    width: auto;
    height: auto;
    margin: 0;
    padding: 12px 16px;
    background: #555;
    color: #fff;
    font-size: 14px;
}

.service-table-wrap {
    overflow-x: auto;
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    background: #f5f5f2;
    text-align: left;
}

.service-table th,
.service-table td {
    padding: 15px 18px;
    border-bottom: 1px solid #d3d3ce;
    white-space: nowrap;
}

.service-table th {
    background: #d2d2ce;
    font-size: 13px;
}

.service-table td {
    font-size: 14px;
}

.service-row-actions {
    display: flex;
    gap: 8px;
}

.edit-service-button,
.remove-service-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
}

.edit-service-button {
    background: #777;
}

.remove-service-button {
    background: #9a5c5c;
}

.complete-order-form {
    margin: 0;
}

.complete-button {
    padding: 8px 11px;
    border: 0;
    border-radius: 6px;
    background: #55795b;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
}

.completed-label {
    color: #55795b;
    font-weight: bold;
}

.status-completed {
    background: #cde5cf;
}

.status-in-progress {
    background: #e9dfb8;
}

.status-pending {
    background: #dededb;
}

@media (max-width: 700px) {
    .customer-notifications {
        width: 100%;
        max-width: 360px;
        align-self: center;
    }

    .customer-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .customer-filter-form {
        align-items: stretch;
        flex-direction: column;
    }

    .customer-filter-form input {
        width: 100%;
        min-width: 0;
    }

    .customer-filter-form button,
    .customer-add-button {
        width: 100%;
    }

    .customer-list-header {
        padding: 16px;
        font-size: 18px;
    }

    .customer-detail-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 16px 18px;
    }

    .customer-table th,
    .customer-table td {
        padding: 10px 12px;
    }

    .service-management-header {
        align-items: stretch;
        flex-direction: column;
        padding: 18px 16px;
    }

    .service-management-header .add-service {
        width: 100%;
    }

    .service-table th,
    .service-table td {
        padding: 10px 12px;
    }
}

/* UX refinements */
.hero-action,
.service-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f5f5f2;
    background: #4b4b4b;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.hero-action {
    margin-top: 28px;
    padding: 13px 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

.service-action {
    margin-top: 22px;
    padding: 10px 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}

.hero-action:hover,
.service-action:hover {
    background: #202020;
    transform: translateY(-2px);
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card .service-action {
    margin-top: auto;
}

.prebooking-heading {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 24px;
}

.prebooking-heading p {
    max-width: 470px;
    margin-bottom: 12px;
    color: #777;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

.booking-progress {
    display: flex;
    align-items: center;
    max-width: 780px;
    margin-bottom: 25px;
    color: #999;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

.booking-progress-step {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.booking-progress-step b {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid #aaa;
    border-radius: 50%;
    background: #eeeeeb;
    font-weight: normal;
}

.booking-progress-step.active {
    color: #4b4b4b;
}

.booking-progress-step.active b {
    background: #4b4b4b;
    color: #f5f5f2;
}

.booking-progress-line {
    flex: 1;
    height: 1px;
    min-width: 35px;
    margin: 0 12px;
    background: #aaa;
}

.prebooking-form {
    max-width: 940px;
    display: block;
}

.booking-step {
    display: none;
    max-width: 940px;
    padding: 24px;
    border: 1px solid #c2c2be;
    background: #eeeeeb;
}

.booking-step.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 30px;
}

.booking-step legend {
    grid-column: 1 / -1;
    padding: 0 8px;
    font-size: 21px;
}

.booking-step .form-group {
    grid-column: auto;
}

.booking-step .form-group small {
    margin-top: 7px;
    color: #777;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.4;
}

.booking-step input[type="text"],
.booking-step select,
.booking-step textarea,
.booking-step input[type="file"] {
    min-height: 48px;
    border: 1px solid #aaa;
    background: #f8f8f7;
}

.booking-step textarea {
    min-height: 130px;
    resize: vertical;
}

.booking-step .notes {
    grid-column: 1 / -1;
}

.booking-step-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 4px;
}

.booking-step-actions .proceed-button {
    width: auto;
    height: auto;
    margin: 0;
    padding: 13px 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

.booking-step-actions .booking-back {
    background: #f5f5f2;
}

.booking-review dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    grid-column: 1 / -1;
    margin: 0;
    background: #c2c2be;
}

.booking-review dl div {
    padding: 16px;
    background: #f8f8f7;
}

.booking-review dt {
    margin-bottom: 6px;
    color: #777;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
}

.booking-review dd {
    margin: 0;
    white-space: pre-wrap;
    line-height: 1.5;
}

.sketch-preview {
    position: relative;
    width: 130px;
    margin-top: 10px;
}

.sketch-preview img {
    display: block;
    width: 130px;
    height: 90px;
    object-fit: cover;
    border: 1px solid #aaa;
}

.sketch-preview button {
    margin-top: 5px;
    border: 0;
    background: transparent;
    color: #777;
    cursor: pointer;
    font-size: 11px;
    text-decoration: underline;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #777;
    outline-offset: 2px;
}

.customer-table-wrap,
.service-table-wrap {
    overflow-x: auto;
}

@media (max-width: 700px) {
    .navigation {
        position: static;
        transform: none;
        gap: 12px;
        margin-left: auto;
        margin-right: 12px;
    }

    .navigation a:nth-child(n + 3) {
        display: none;
    }

    .logo {
        position: static;
        font-size: 12px;
    }

    .hero-content,
    .welcome-section,
    .admin-welcome {
        flex-direction: column;
        gap: 35px;
    }

    .hero-text,
    .welcome-text {
        width: 100%;
    }

    .hero-image,
    .user-options {
        width: min(100%, 440px);
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .prebooking-container {
        padding: 18px 16px 35px;
    }

    .prebooking-heading {
        display: block;
    }

    .prebooking-heading p {
        margin: 12px 0 0;
    }

    .booking-progress {
        font-size: 10px;
    }

    .booking-progress-line {
        min-width: 12px;
        margin: 0 5px;
    }

    .booking-step.active {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .booking-step legend,
    .booking-step .notes,
    .booking-step-actions {
        grid-column: 1;
    }

    .booking-review dl {
        grid-template-columns: 1fr;
    }

    .booking-step-actions {
        justify-content: stretch;
    }

    .booking-step-actions .proceed-button {
        flex: 1;
    }
}

.customer-summary {
    width: min(900px, 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 auto 30px;
}

.customer-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    background: #f5f5f2;
    border-bottom: 2px solid #aaa;
    text-align: left;
}

.customer-summary span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}

.customer-summary strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: normal;
}

.status-pending {
    background: #e4e0d2;
    color: #6d5d2d;
}

.status-in-progress {
    background: #d9e0e4;
    color: #405866;
}

.status-completed {
    background: #dce4dc;
    color: #426048;
}

@media (max-width: 600px) {
    .customer-summary {
        grid-template-columns: 1fr;
    }
}