*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, sans-serif;
}

:root {
    --bg-color: #000;
    --snd-bg-color: #111;
    --text-color: #fff;
    --main-color: #d4a41e;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

body{
    background: var(--bg-color);
    color: var(--text-color);
}

section{
    min-height: 100vh;
    padding: 10rem 8% 2rem;
}


/* Header Section Code */
header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%; /* Use percentage for padding */
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.logo {
    font-size: 2.5rem; /* Use rem for scalable font size */
    font-style: italic;
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1);
}

.navbar {
    display: flex;
    align-items: center; /* Ensure vertical alignment */
    gap: 2rem; /* Use gap for spacing between items */
}

.navbar a {
    font-size: 1.6rem; /* Use rem for scalable font size */
    font-weight: 500;
    font-style: italic;
    color: var(--text-color);
    transition: all 0.5s ease;
    border-bottom: 3px solid transparent;
}

.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}

.top-btn {
    display: flex;
    align-items: center;
    gap: 1rem; /* Use gap for spacing between buttons */
}

.nav-btn {
    display: inline-block;
    padding: 0.8rem 2rem; /* Use rem for scalable padding */
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 1rem;
    font-size: 1.4rem; /* Use rem for scalable font size */
    font-weight: 600;
    transition: all 0.5s ease;
}

.nav-btn:hover {
    background: var(--main-color);
    color: var(--text-color);
    box-shadow: 0 0 18px var(--main-color);
}

#menu-icon {
    font-size: 3rem; /* Use rem for scalable font size */
    color: var(--main-color);
    cursor: pointer;
    display: none;
}


/* Home Section Code */

.home {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-content h3 {
    font-size: 5rem;
    font-weight: 700;
    font-family: Cochin;
    text-decoration: none;
}

.home-content span {
    font-size: 4rem;
    font-weight: 550;
    font-family: Cochin;
}

span {
    color: var(--main-color);
}

.home-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    font-family: Cochin;
    line-height: 1.3;
}

.home-img img {
    width: 45vw;
}

/* .home-img::before {
    content: 'FITNESS';
    position: absolute;
    top: 10%;
    left: 30%;
    transform: translateX(-50%);
    font-size: 20rem;
    font-weight: 400;
    line-height: 20rem;
    color: var(--text-color);
    opacity: 0.1;
    z-index: -1;
} */

.home-content p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    border-radius: 1rem;
    box-shadow: none;
    font-size: 1.6rem;
    color: var(--bg-color);
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: 0.5s ease;
}

.btn:hover {
    color: var(--text-color);
    box-shadow: 0 0 1.6rem var(--main-color);
}



/* Services Section Code */
/* Services Section Code */
.services {
  background: var(--snd-bg-color);
  padding: 10rem 5% 5rem;
}

.heading {
  text-align: center;
  font-size: 6.5rem;
  color: var(--text-color);
}

.services-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
  justify-items: center;
}

.row {
  background: #1e1e1e;
  border-radius: 2rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(212, 164, 30, 0.15);
  text-align: center;
  padding: 2rem;
  width: 100%;
  max-width: 350px;
  border: 1px solid rgba(212, 164, 30, 0.2);
  border-right: none;
  border-bottom: none;
}

.row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.row h4 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--main-color);
}

.row:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(212, 164, 30, 0.3);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .services-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-content {
    grid-template-columns: 1fr;
  }
}


/* About Section Code */

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.about-img img {
    width: 50vw;
    border: 2px solid var(--text-color);
    border-radius: 1rem;
    transition: 0.5s ease;
}

.about-img img:hover {
    transform: scale(1.01);
    border: 2px solid var(--main-color);
}

.about-content .heading {
    text-align: center;
    font-size: 6rem;
}

.about-content {
    padding: 0 3rem;
}

.about-content h2 {
    text-align: left;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.6rem;
    margin: 2rem 0 2rem;
}

/* Pricing Section Code */

.plans {
    background: var(--snd-bg-color);
}

.plans-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    align-items: center;
    gap: 2.3rem;
    margin-top: 4.2rem;
}

.box {
    padding: 30px 30px 50px 30px;
    height: 40rem;
    background: var(--bg-color);
    border-radius: 28px;
    border: 1px solid transparent;
    box-shadow: 0 0 5px var(--main-color);
    transition: all 0.5s ease;
    cursor: pointer;
}

.box h3 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px;
}

.box h2 {
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 20px;
}

.box ul li {
    list-style: disc;
    font-size: 1.7rem;
    padding-bottom: 1.2rem;
}

.box a {
    display: inline-block;
    font-size: 22px;
    line-height: 1.2em;
    font-weight: 700;
    padding: 7px 0;
    color: var(--text-color);
    border-bottom: 2px solid #5d6c83;
    transition: all 0.5s ease;
}

.box i {
    vertical-align: middle;
    font-size: 25px;
    color: var(--main-color);
    margin-left: 5px;
}

.box a:hover {
    border-bottom: 2px solid var(--main-color);
}

.box:hover {
    border: 1px solid var(--main-color);
    transform: translateY(-5px) scale(1.03);
}

/* Store Section */

  .store-section {
    background: var(--snd-bg-color);
    text-align: center;
  }

  .section-title {
    font-size: 4.2rem;
    margin-bottom: 5rem;
    color: var(--main-color);
  }

  .store-items {
    display: grid;
    gap: 5rem;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    max-width: 1300px;
    margin: 0 auto;
  }

  .store-card {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 2.5rem;
    box-shadow: 0 1rem 2rem rgba(212, 164, 30, 0.15);
    transition: transform 0.3s ease;
  }

  .store-card:hover {
    transform: translateY(-1rem);
  }

  .store-card img {
    width: 100%;
    height: 35rem; /* Increased from 30rem */
    object-fit: cover;
    border-radius: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .store-card h3 {
    font-size: 2.2rem;
    color: var(--main-color);
    margin-bottom: 1.2rem;
  }

  .store-card p {
    font-size: 1.6rem;
    color: #ccc;
    margin-bottom: 2rem;
  }

  .price {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--text-color);
  }

  .buy-btn {
    display: inline-block;
    background: var(--main-color);
    color: var(--bg-color);
    padding: 1.4rem 2.8rem;
    border-radius: 1rem;
    font-size: 1.6rem;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  .buy-btn:hover {
    background: #b88b16;
  }


/* Styles for Login Form */
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 10rem 8% 2rem;
}

.login-container {
    background-color: #b5b5b536;
    box-shadow: 2px 2px 4px 2px #b5b5b563;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.login-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--main-color);
    
}


/* Styles for Sign-Up Form */
.signup-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 10rem 8% 2rem;
}

.signup-container {
    background: var(--snd-bg-color);
    box-shadow: 2px 2px 4px 2px #b5b5b563;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.signup-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--main-color);
}

/* Form layout enhancements for sign-up */
.form-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-row .address-group {
    flex: 2;
}

.form-row .contact-group {
    flex: 1;
}

/* Shared Form Group Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 1.6rem;
}

.form-group select {
    appearance: none;
    background: var(--bg-color) url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat right 10px center;
    background-size: 12px;
}

.form-group input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 1.6rem;
}

/* Button */
.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    border-radius: 1rem;
    box-shadow: none;
    font-size: 1.6rem;
    color: var(--bg-color);
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: 0.5s ease;
    cursor: pointer;
}

.btn:hover {
    color: var(--text-color);
    box-shadow: 0 0 1.6rem var(--main-color);
}

/* Links */
.links {
    margin-top: 20px;
}

.links a {
    color: var(--main-color);
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}


/* Footer Section Code */

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    background: #222; /* Ensure footer has a consistent dark background */
    color: #fff;
    text-align: center;
}

.footer .social {
    text-align: center;
    padding-bottom: 20px;
    color: var(--main-color);
} 

.footer .social a {
    font-size: 25px;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 10px;
    transition: 0.3s ease-in-out;
}

.footer .social a:hover {
    transform: scale(1.2) translateY(-10px);
    background: var(--main-color);
    color: #131313;
    box-shadow: 0 0 25px var(--main-color);
}

.footer .copyright {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    color: var(--text-color);
}

/* ScrollBar Design */

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    width: 50px;
}




/* Responsive Design Code */

@media (max-width:1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 991px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 255px;
        min-height: 100vh;
        display: flex;
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align items to the left */
        justify-content: flex-start; /* Align items to the top */
        background: var(--bg-color);
        transition: all 0.5s ease;
        padding: 1rem; /* Add padding for better spacing */
    }

    .navbar a {
        display: block;
        padding: 1rem; /* Use rem for scalable padding */
        font-size: 1.8rem; /* Use rem for scalable font size */
        width: 100%; /* Ensure full width for clickable area */
        text-align: left; /* Align text to the left */
    }

    .navbar.active {
        right: 0;
    }

    header {
        padding: 1rem 3%; /* Use rem for scalable padding */
    }

    section {
        padding: 8rem 3%; /* Use rem for scalable padding */
    }

    .services {
        padding: 5rem; /* Use rem for scalable padding */
    }

    .about-content h2 {
        margin-top: 1.5rem; /* Use rem for scalable margin */
        text-align: center;
        font-size: 3.5rem; /* Use rem for scalable font size */
    }

    .review .wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer {
        padding: 2rem 0; /* Use rem for scalable padding */
    }
}

@media (max-width:786px) {
    .home {
        flex-direction: column;
    }
    .home-content h3 {
        font-size: 4.5rem;
        margin-top: 1.5rem;
    }
    .home-content h1 {
        font-size: 5rem;
        margin-top: 1.5rem;
    }
    .home-content {
        order: 2;
    }
    .home-img img {
        width: 70vw;
        margin-top: 4rem;
    }
    .about {
        flex-direction: column;
    }
    .about-img img {
        width: 70vw;
        margin-top: 4rem;
    }
    .about-content {
        text-align: center;
    }
    .about-content h2 {
        text-align: center;
    }
    .services h2 {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .login-container, .signup-container {
        padding: 2rem; /* Further reduced padding for smaller screens */
    }

    .login-container h2, .signup-container h2 {
        font-size: 2.5rem; /* Smaller font size for headings */
    }

    .form-group input,
    .form-group select {
        font-size: 1.4rem; /* Smaller font size for inputs */
    }

    .btn {
        font-size: 1.4rem; /* Smaller font size for buttons */
        padding: 0.8rem 2rem; /* Adjusted padding for buttons */
    }

    .form-row {
        flex-direction: column; /* Stack form groups vertically on small screens */
        gap: 0; /* Remove gap when stacked */
    }

    .form-row .form-group {
        margin-bottom: 15px; /* Add margin between stacked form groups */
    }

    .form-row .address-group,
    .form-row .contact-group {
        flex: 1; /* Reset flex for stacked layout */
    }
}

@media (max-width:617px) {
    .home-img img {
        width: 80vw;
        margin-top: 8rem;
    }
    .about-img img {
        width: 70vw;
        margin-top: 4rem;
    }
}

@media (max-width: 480px) {
    .login-container, .signup-container {
        padding: 1.5rem; /* Minimal padding for very small screens */
    }

    .login-container h2, .signup-container h2 {
        font-size: 2rem; /* Even smaller font size for headings */
    }

    .form-group input,
    .form-group select {
        font-size: 1.2rem; /* Smaller font size for inputs */
    }

    .btn {
        font-size: 1.2rem; /* Smaller font size for buttons */
        padding: 0.6rem 1.5rem; /* Adjusted padding for buttons */
    }
}

@media (max-width:450px) {
    html {
        font-size: 50%;
    }
}
/* Only Apply These Styles to Dashboards */
.dashboard-container {
    font-size: 18px;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9; /* Change to a lighter background color */
    color: #333;
    text-align: center;
    padding: 20px;
    max-height: 80vh; /* Limits dashboard height to 80% of the screen */
    overflow-y: auto; /* Enables vertical scrolling */
    overflow-x: hidden; /* Prevents horizontal scrolling */
    border-radius: 10px; /* Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}
/* Dashboard Headers */
.dashboard-container h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 10px;
}

.dashboard-container h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Dashboard Tables */
.dashboard-container table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.dashboard-container table th,
.dashboard-container table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.dashboard-container table th {
    background: #222;
    color: white;
    font-size: 20px;
}

.dashboard-container table td {
    font-size: 18px;
}

/* Plan Status Styling */
.dashboard-container .active {
    color: green;
    font-weight: bold;
}

.dashboard-container .expired {
    color: red;
    font-weight: bold;
}

.dashboard-container .pending {
    color: orange;
    font-weight: bold;
}

/* Dashboard Forms and Buttons */
.dashboard-container form select,
.dashboard-container form button {
    font-size: 18px;
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
}

.dashboard-container form button {
    background: #222;
    color: white;
    border: none;
    cursor: pointer;
}

.dashboard-container form button:hover {
    background: #555;
}

/* Logout Button */
.dashboard-container .btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    background: #d9534f;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
}

.dashboard-container .btn:hover {
    background: #c9302c;
}

.dashboard-container form .delete-btn {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.dashboard-container form .delete-btn:hover {
    background-color: darkred;
}

/* Dashboard Scrollable Container */
.dashboard-container {
    font-size: 18px;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    padding: 20px;
    max-height: 80vh; /* Limits dashboard height to 80% of the screen */
    overflow-y: auto; /* Enables vertical scrolling */
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

/* Ensure tables are always within the container */
.dashboard-container table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.dashboard-container table th,
.dashboard-container table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.dashboard-container table th {
    background: #222;
    color: white;
    font-size: 20px;
}

.dashboard-container table td {
    font-size: 18px;
}

/* Scrollbar Styling */
.dashboard-container::-webkit-scrollbar {
    width: 10px;
}

.dashboard-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dashboard-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.dashboard-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: var(--snd-bg-color);
}

.login-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 80%;
    max-width: 1200px;
}

.login-box {
    background: var(--snd-bg-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
}

.member-box {
    background-color: #222; /* Slightly darker for the member box */
}

.admin-box {
    background-color: #222; /* Slightly darker for the admin box */
}

.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--main-color); /* Title color */
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #222;
    color: var(--text-color);
}

.btn {
    width: 100%;
    padding: 10px;
    background-color: var(--main-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #d38f1b; /* Darken main color on hover */
}

.error {
    color: #ff0000; 
    font-size: 2rem;
    font-weight: bold; 
    text-align: center; 
    margin-bottom: 20px; 
}


.top-btn a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 20px;
    background-color: var(--main-color);
    border-radius: 5px;
}

.top-btn a:hover {
    background-color: #d38f1b;
}
/* Create admin and trainer  */
        .card {
            max-width: 1200px;
            margin: 30px auto;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        h2 {
            text-align: center;
        }

        .form-flex {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .form-section {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
        }

        form {
            display: flex;
            flex-direction: column;
        }

        input, button {
            margin-bottom: 10px;
            padding: 10px;
            font-size: 16px;
        }

        button {
            background-color: #f2f3f2;
            color: white;
            border: none;
            cursor: pointer;
        }

        button:hover {
            background-color: #eeeeee;
        }

        .footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 50px;
        }

        .social a {
            margin: 0 10px;
            color: white;
            text-decoration: none;
            font-size: 20px;
        }

        .social a:hover {
            color: #ddd;
        }

        /* memberdashboard image receipt*/
        .receipts-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px; /* Space between images */
        }
        
        .receipt-item {
            width: 150px; /* Adjust thumbnail size */
            height: 150px;
            overflow: hidden; /* Ensure images are contained */
            border: 1px solid #ddd; /* Optional border */
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .receipt-item img.zoomable-receipt {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Maintain aspect ratio */
            cursor: zoom-in; /* Indicate zoomable image */
            transition: transform 0.3s ease; /* Smooth zoom effect */
        }
        
        .receipt-item img.zoomable-receipt:hover {
            transform: scale(1.2); /* Slightly enlarge on hover */
        }
        body {
            font-family: Arial, sans-serif;
        }
        .receipts-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        .receipt-item {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 10px;
            text-align: center;
            width: 200px;
        }
        .receipt-item img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
        }
        .receipt-item a {
            text-decoration: none;
            color: #007bff;
            font-weight: bold;
        }
        .no-receipts {
            text-align: center;
            font-size: 16px;
            color: #888;
        }
    
        /* Trainer Dashboard Specific Styles */
.dashboard-container .card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.dashboard-container .card h3 {
    color: #d4a41e;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.dashboard-container .card p {
    margin: 8px 0;
    font-size: 16px;
}

.dashboard-container .card p strong {
    color: #333;
    width: 120px;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-container .card {
        padding: 15px;
    }
    
    .dashboard-container table {
        font-size: 14px;
    }
    
    .dashboard-container table th,
    .dashboard-container table td {
        padding: 8px;
    }
}

footer {
  margin-top: 0;
}

.plans {
  min-height: auto;
}

.store-section {
  min-height: auto;
}


