/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}
/* Header */
/* Header Styling */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #081501; /* Dark green background */
    height: 70px; /* Fixed height for consistency */
    border-bottom: 1px solid #e5e5e5;
}

/* Header Left Section */
.header-left {
    display: flex;
    align-items: center;
}

/* Burger Menu Icon */
.menu-icon {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    margin-right: 10px;
}

/* Logo Container */
/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px; /* Adjust the width */
    height: 100px; /* Adjust the height */
    margin-left: 30px; /* Add spacing from the burger menu */
}

/* Logo Styling */
.logo {
    width: 200px; /* Set a fixed width for better visibility */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the entire logo fits */
    cursor: pointer;
}


/* Search Bar Container */
.search-container {
    flex: 1; /* Allows the search bar to take up available space */
    display: flex;
    align-items: center;
    justify-content: center; /* Center the search bar */
    margin: 0 15px; /* Add spacing around the search bar */
    max-width: 600px; /* Restrict maximum width */
}

/* Search Bar Input */
.search-bar {
    width: 100%;
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 20px 0 0 20px;
    outline: none;
    font-size: 14px;
}

/* Search Button */
.search-icon {
    background: #ff8c00; /* Bright orange */
    border: none;
    border-radius: 0 20px 20px 0;
    padding: 8px 15px;
    color: white;
    cursor: pointer;
}

.search-icon i {
    font-size: 14px;
}

/* Account Icon */
.account-icon {
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    margin-left: 10px;
}

/* Main Content */
main {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Settings Title */
.settings-title {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

/* Section Styling */
section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #ff8c00;
}

/* Checkbox Styling */
.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

/* Save Button */
.save-button {
    padding: 10px 20px;
    background-color: #ff8c00;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-align: center;
}

.save-button:hover {
    background-color: #333;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #f9f9f9;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    font-size: 14px;
    color: #666;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 15px;
    }

    .settings-title {
        font-size: 24px;
    }

    .form-group input,
    .form-group select {
        font-size: 12px;
    }

    .save-button {
        font-size: 14px;
    }
}

#back-to-dashboard {
    background: url('../images/00.jpg') no-repeat center center; 
    background-size: cover;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#back-to-dashboard:hover {
    background-color: #e07b00; /* Darker orange on hover */
}

