body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f2e6ff; /* Light purple background */
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
}

h1,h3 {
    color: #4a235a; /* Dark purple */
    margin-bottom: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.image-item {
    position: relative;
}

.image-item input[type="checkbox"] {
    display: none;
}

.image-item label {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.image-item label img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-item input[type="checkbox"]:checked + label img {
    transform: scale(1.1);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.input-field input, .submit-button button {
    width: 70%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit-button button {
    background-color: #4a235a; /* Dark purple */
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: large;
}

.submit-button button:hover {
    background-color: #5d397d;
}

footer p {
    margin-top: 30px;
}

footer a {
    color: #4a235a;
    text-decoration: none;
}

@media (max-width: 600px) {
    .input-field input, .submit-button button {
        width: 90%;
    }
    .progress-header {
        flex-direction: column; /* Stacks the header information vertically */
        align-items: center; /* Centers items horizontally */
        text-align: center; /* Ensures text is centered */
    }

    .progress-header .order-info h2,
    .progress-header .tracking-number {
        font-size: 12px; /* Reduces the font size for smaller screens */
        margin: 5px 0; /* Provides some space between the elements */
    }
    /* Style for the text under the progress circles */
    .progress-bar .progress-step::before {
        font-size: 9px; /* Smaller font size for step labels */
        white-space: normal; /* Allows the text to wrap */
        word-break: break-word; /* Breaks the text at appropriate word boundaries */
        position: absolute;
        width: 70px; /* Adjust width as needed to contain the text */
        bottom: -30px; /* Adjust bottom position to accommodate wrapped text */
        text-align: center; /* Center the text */
        line-height: 1.2; /* Adjust line height for readability */
    }

   
}
/* ... existing styles ... */

.image-item label img {
    max-width: 100%;
    height: auto;
    border: 3px solid transparent; /* Updated for border */
    border-radius: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.image-item input[type="checkbox"]:checked + label img {
    transform: scale(1.1);
    border-color: #28a745; /* Green border for selected items */
}
/* ... existing styles ... */

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.image-item {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.image-item input[type="number"] {
    width: 84%;
    padding: 5px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.image-item input[type="number"]:focus {
    outline: none;
    border-color: #28a745; /* Green border for focus */
}

.image-item input[type="number"]:not(:placeholder-shown) {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* ... remaining styles ... */
/* ... existing styles ... */

.image-item {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.image-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.quantity-input {
    width: 60%;
    padding: 5px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.quantity-input:focus {
    outline: none;
    border-color: #28a745; /* Green border for focus */
}

.quantity-input:not(:placeholder-shown) {
    transform: scale(1.1);
}

.image-item:has(.quantity-input:not(:placeholder-shown)) {
    border-color: #28a745; /* Green border when qty > 0 */
    transform: scale(1.05);
}

/* ... remaining styles ... */
.input-message {
    color: red;
    font-size: 1em;
    margin-top: 5px;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    padding-top: 25px;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modal-text {
    font-size: 18px; /* Adjust font size as needed */
    color: #4a235a; /* Choose your desired text color */
    text-align: center; /* Center align text */
    /* Add other styling properties as needed */
}


h2 {
    text-align: center; /* Center the header text */
    margin-bottom: 20px; /* Add some space below the header */
}

table {
    border-collapse: collapse; /* Collapse borders between table cells */
    width: 60%; /* Set a specific table width */
    margin: 0 auto; /* Center the table horizontally */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Add some shadow for depth */
}

th, td {
    text-align: left; /* Align text to the left inside cells */
    padding: 8px; /* Add some padding for content inside cells */
    border-bottom: 1px solid #ddd; /* Add a bottom border to all cells */
}

th {
    background-color: #f2f2f2; /* Light grey background for header cells */
    color: #333; /* Dark text color for contrast */
}

tr:nth-child(even) {
    background-color: #f9f9f9; /* Zebra-striping for rows */
}

/* Add a hover effect for table rows */
tr:hover {
    background-color: #f1f1f1;
}
.yes {
    color: green;
}

.no {
    color: red;
}


.progress-container {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 50%; /* The progress bar container takes up half the width of its parent */
    margin: 100px auto 0; /* Centered with margin from the top */
    position: relative; /* For absolute positioning of children */
    padding-bottom: 60px; /* Extra space for step labels */
    padding: 40px; /* Increase the top and bottom padding to increase height */

}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.progress-header .order-info h2 {
    color: #333;
    font-size: 24px;
    margin: 0;
    text-align: center;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-track,
.progress-track-filled {
    position: absolute;
    top: 18px; /* Centered vertically */
    height: 4px;
    z-index: 1;
}

.progress-track {
    width: 100%;
    background-color: #DDD;
}

.progress-track-filled {
    width: 0; /* Start with no fill */
    background-color: #7B1FA2; /* Color of the filled part */
    transition: width 0.3s ease; /* Smooth transition for filling effect */
}

.progress-step {
    width: 30px; /* Diameter of the step circles */
    height: 30px; /* Diameter of the step circles */
    border: 2px solid #7B1FA2; /* Circle border color */
    background-color: #FFFFFF;
    border-radius: 50%;
    position: relative; /* For absolute positioning of step labels */
    z-index: 2;
}

.progress-step::before {
    content: attr(data-step);
    position: absolute;
    bottom: -30px; /* Adjust distance from circle to label */
    width: 100px; /* Width of the label */
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #333;
    text-align: center; /* Center align text */
    font-weight: bold; /* Bold text */
    text-transform: uppercase; /* UPPERCASE text */
    letter-spacing: 1px; /* Space out the letters */
    z-index: 3;
}

.progress-step-active {
    background-color: #7B1FA2; /* Background color for active step */
    color: #FFFFFF; /* Text color for active step */
}
.admin-container {
    width: 80%;
    max-width: 600px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px; /* Adjust the gap as needed */
    padding-top: 50px; /* Padding from the top */
}
.admin-button {
    padding: 20px;
    border: none;
    border-radius: 5px;
    background-color: #7B1FA2; /* Adjust the color as needed */
    color: white;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.welcome-header {
    text-align: center;
    margin: 40px 0; /* Spacing above and below the header */
    font-size: 24px; /* Adjust size as needed */
    color: #4a235a; /* Adjust text color as needed */
}
.navbar {
    background-color: #333; /* Navbar background color */
    overflow: hidden;
}

.navbar a {
    float: left; /* Align links to the left side */
    display: block;
    color: #f2f2f2; /* Link text color */
    text-align: center;
    padding: 14px 16px; /* Padding for link items */
    text-decoration: none; /* No underline for links */
}

.navbar a:hover {
    background-color: #ddd; /* Link hover color */
    color: black; /* Link text color on hover */
}
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-width: 90%;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
}
.chat-header {
    padding: 15px;
    background-color: #007bff;
    color: white;
    text-align: center;
    cursor: pointer;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 18px;
}
.chat-body {
    padding: 15px;
    height: 250px;
    overflow-y: auto;
    font-size: 16px;
}
.chat-footer {
    display: flex;
    padding: 10px;
}
.chat-footer input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.chat-footer button {
    margin-left: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.user-message {
    color: white;
    background-color: #007bff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    align-self: flex-end;
    max-width: 80%;
}
.bot-message {
    color: black;
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    align-self: flex-start;
    max-width: 80%;
}
.message-container {
    display: flex;
    flex-direction: column;
}