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

body {
    font-family: Arial, sans-serif;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

header {
    height: 80px;
    background-color: rgb(53, 48, 48);
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

header2 {
    height: 40px;
    background-color: rgb(53, 48, 48);
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}


.container, .header-container, .footer-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    margin-top: 5px;
}

.nav-menu {
    flex-grow: 1;
    text-align: center;
    margin-right: 10px;
}


.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.nav-menu ul li {
    margin: 0 15px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.header-icons {
    display: flex;
    gap: 10px;
}

.header-icons a {
    color: #000;
    font-size: 20px;
}

.mobile-menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.mobile-nav-menu {
    display: none;
    width: 100%;
    background-color: #ccc;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 1000;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 10px 0;
    text-align: center;
}

.mobile-nav-menu ul li {
    margin: 10px 0;
}

.mobile-nav-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}


@media (max-width: 800px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .container, .header-container, .footer-container {
        justify-content: space-between;
    }

  }

.main-content {
    width: 80%;
    margin: 20px auto;
    text-align: center;
}

.spacer {
    height: 10px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d2b48c; /* Light coffee color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 0;
}

.featured-image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

.light-coffee-bg {
    background-color: #d2b48c; /* Light coffee color */
    padding: 15px;
}

.store-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.store-card {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: calc(50% - 40px); /* Adjust based on desired width and margin */
    text-align: center;
}

.store-card h3 {
    margin-bottom: 10px;
}

.store-card p {
    margin-bottom: 20px;
}

.store-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d2b48c; /* Light coffee color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.store-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

.event-list p {
    margin: 0;
    padding: 5px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Add space between form fields */
    margin-top: 20px;
    transform: scale(1); /* Scale the entire form to 150% */
}

.form-group {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.form-group.full-width {
    max-width: 100%;
}

.form-group i {
    position: absolute;
    left: 10px;
    color: #aaa;
    font-size: 18px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 15px 15px 50px; /* Increase padding for scaling */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-textarea {
    resize: vertical;
}

.contact-form-button {
    padding: 15px 30px; /* Increase button size */
    background-color: #d2b48c; /* Light coffee color */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-message {
    font-size: 16px;
    color: green;
}

/* Styles for login form */
.login-form {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #d2b48c; /* Light coffee color */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: auto;
}

.login-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.login-form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #333;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.login-button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.login-button:hover {
    background-color: #000;
}

.photo-upload {
    text-align: center;
    margin-top: 20px;
}

.photo-upload h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.photo-upload input[type="file"] {
    margin-bottom: 20px;
}

.photo-upload button {
    padding: 10px 20px;
    background-color: #d2b48c; /* Light coffee color */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.photo-upload button:hover {
    background-color: #c19a6b;
}

.photo-album {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.photo-item {
    width: 250px;
    margin-bottom: 20px;
    text-align: center;
    padding: 10px; /* Add padding for spacing */
}

.photo-frame {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    margin: 0 auto; /* Center align */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-controls {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.photo-controls input[type="text"],
.photo-controls select {
    width: 80%;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 5px;
}

.photo-controls button {
    padding: 5px 10px;
    background-color: #d2b48c; /* Light coffee color */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.photo-controls button:hover {
    background-color: #c19a6b;
}

@media (max-width: 800px) {
    .photo-frame {
        width: 100%;
        height: auto;
    }

    .photo-frame img {
        width: 100%;
        height: auto;
    }

    .photo-controls {
        width: 100%;
    }
}

/* Styles for footer */
footer {
    height: 80px;
    background-color: rgb(53, 48, 48);
    width: 100%;
    display: flex;
    align-items: center;
}

footer .container, .footer-container {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Vertically aligns the contents */
    color: #fff;
    position: relative;
    flex-wrap: wrap;
}

.footer-links, .quick-links {
    display: flex;
    gap: 20px;
}

.footer-links a, .quick-links a {
    color: #fff;
    text-decoration: none;
}

.footer-copyright {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.footer-social, .social-icons {
    display: flex;
    gap: 10px;
}

.footer-social a, .social-icons a {
    color: #fff;
    text-decoration: none;
}

.footer-social a i, .social-icons a i {
    font-size: 20px;
}

/* Styles for backup tables */
.table-container {
    width: 80%;
    margin: 20px auto;
    text-align: center;
}

.backup-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.backup-table th, .backup-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.backup-table th {
    background-color: #f4f4f4;
}

.backup-table td a {
    color: #3498db;
    text-decoration: none;
}

.backup-table td button {
    padding: 5px 10px;
    background-color: #d2b48c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.backup-table td button:hover {
    background-color: #c19a6b;
}

/* Add necessary styles for the carousel */
.carousel {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.carousel-item {
    display: none;
    text-align: center;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    /*width: 100%;
    height: auto;*/
    width: 1280px;
    height: auto;
    object-fit: cover;
}

.carousel-caption {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 18px;
}

.carousel-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.carousel-controls button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    pointer-events: all;
}

.automated-backup {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.automated-backup h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.automated-backup form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.automated-backup button[disabled] {
    background-color: #d2b48c;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
    font-size: 16px;
}

.automated-backup button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.automated-backup button:hover {
    background-color: #555;
}

.automated-backup input[type="time"] {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin-bottom: 10px;
}

.automated-backup span {
    font-size: 16px;
    margin-top: 10px;
}

.status-button {
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: not-allowed;
    color: white;
    margin-bottom: 10px;
    display: inline-block;
}

.status-on {
    background-color: green;
}

.status-off {
    background-color: red;
}

.table-container {
    margin-top: 20px;
}

.backup-table {
    width: 100%;
    border-collapse: collapse;
}

.backup-table th, .backup-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.backup-table th {
    background-color: #f2f2f2;
}

.success-message, .error-message {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: center;
}

.success-message {
    background-color: #dff0d8;
    color: #3c763d;
}

.error-message {
    background-color: #f2dede;
    color: #a94442;
}

.care-section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
}

.care-section h2 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #d2b48c; /* Light coffee color */
}

.care-section p {
    margin-bottom: 10px;
    font-size: 1em;
}

.care-section span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

/*.main-content h1, .main-content h2 {
    color: #d2b48c;
}
        
.main-content p, .main-content div {
    margin-bottom: 20px;
    line-height: 1.6;
}

.main-content a {
    color: #d2b48c;
    text-decoration: none;
}

.main-content a:hover {
    text-decoration: underline;
}*/

/* Styles for the privacy policy section */
.privacy-policy-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.privacy-policy-section .privacy-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center; /* Center the text horizontally */
}

.privacy-policy-section h1,
.privacy-policy-section h2 {
    color: #d2b48c;
    margin-bottom: 20px;
}

.privacy-policy-section p,
.privacy-policy-section ul {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.privacy-policy-section ul {
    list-style: none;
    padding-left: 0;
}

.privacy-policy-section ul li {
    position: relative;
    padding-left: 20px;
    text-align: center;
}

.privacy-policy-section ul li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #d2b48c;
    font-size: 1.2em;
}

.privacy-policy-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 800px) {
    .privacy-policy-section {
        padding: 20px 10px;
    }

    .privacy-policy-section .privacy-container {
        width: 100%;
    }
}

/* Styles for the task management system */
.task-container {
    width: 50%;
    margin: 20px auto;
    text-align: center;
}

.task-box {
            background-color: #f9f9f9;
            padding: 20px;
            margin: 10px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: left;
            line-height: 1.6;
            border: 1px solid;
        }
.task-box h3 {
            margin-bottom: 10px;
            background-color: #d2b48c;
            border: 1px solid;
        }

.task-box button {
            padding: 10px 20px;
            background-color: #d2b48c;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-right: 10px;

}

.task-box-dashboard {
            background-color: #f9f9f9;
            padding: 20px;
            margin: 10px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: left;
            line-height: 1.6;
            border: 1px solid;
            width: 50%;    
          
        }

.task-box-dashboard h3 {
            margin-bottom: 10px;
            background-color: #d2b48c;
            border: 1px solid;
        }
     


.task-list-dashboard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /*align-items: center; /* Centers the children vertically, optional */
    /*flex-wrap: wrap; /* Allows the children to wrap to the next line if necessary */

}

/* Mobile styling */
@media (max-width: 900px) {
    .task-box-dashboard {
        width: 100%;
        margin: 5px 0;
    }
}





.task-actions {
    margin-bottom: 20px;
}

.task-actions button {
            padding: 10px 20px;
            background-color: #d2b48c;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-right: 10px;
        }
        
.task-actions button:hover {
            background-color: #c19a6b;
        }

.task-button {
    background-color: #d2b48c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 5px;
}

.task-button:hover {
    background-color: #c19a6b;
}

.task-view {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.task-list {
    list-style: none;
    padding: 0;
    width: 100%;
}

.task-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 600px;
    text-align: left;
}

.task-item h3 {
    margin-top: 0;
    color: #d2b48c;
}

.task-item p {
    margin: 5px 0;
}

.task-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
            background-color: rgb(0,0,0);
            background-color: rgba(0,0,0,0.4);
            padding-top: 60px;
}

.task-modal-content {
     background-color: #fefefe;
            margin: 5% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 500px;
            border-radius: 10px;
}

.task-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.task-close:hover,
.task-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.task-form-group {
    margin-bottom: 15px;
    text-align: left;
}

.task-form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.task-form-group input,
.task-form-group textarea,
.task-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.task-form-group textarea {
    resize: vertical;
}

.task-submit-button {
    background-color: #d2b48c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.task-submit-button:hover {
    background-color: #c19a6b;
}

.task-calendar {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
}

.task-filter {
    margin: 20px 0;
    text-align: center;
}

.task-filter label {
    margin-right: 10px;
}

.task-filter select {
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin-right: 20px;
}



/* Styles for the terms of service section */
.terms-of-service-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.terms-of-service-section .terms-of-service-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center; /* Center the text horizontally */
}

.terms-of-service-section h1,
.terms-of-service-section h2 {
    color: #d2b48c;
    margin-bottom: 20px;
}

.terms-of-service-section p,
.terms-of-service-section ul {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.terms-of-service-section ul {
    list-style: none;
    padding-left: 0;
}

.terms-of-service-section ul li {
    position: relative;
    padding-left: 20px;
    text-align: center;
}

.terms-of-service-section ul li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #d2b48c;
    font-size: 1.2em;
}

.terms-of-service-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 800px) {
    .terms-of-service-section {
        padding: 20px 10px;
    }

    .terms-of-service-section .terms-of-service-container {
        width: 100%;
    }
}

@media (max-width: 1000px) {
    .carousel-item img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 800px) {
    .main-content {
        width: 100%;
    }

    .featured-image {
        width: 100%;
    }

    .store-card {
        width: 90%;
        margin: 10px auto;
    }

    .form-group {
        max-width: 100%;
    }

    .photo-frame {
        width: 100%;
        height: auto;
    }

    .photo-frame img {
        width: 100%;
        height: auto;
    }

    footer {
        height: auto;
        padding: 20px 0;
    }

    footer .container, .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        margin-bottom: 10px;
    }

    .footer-social {
        margin-bottom: 10px;
    }

    .footer-copyright {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 10px;
    }
}

.nav2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    background-color: #f5f5f5; /* Light background color for contrast */
}

.nav2 button {
    background-color: #d2b48c; /* Coffee color */
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav2 button:hover {
    background-color: #b08a6e; /* Darker coffee color on hover */
}
