/* Layout */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #2d3e2d;
    height: 100%;
    font-size: 14px;
}

.layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 180px; /* narrower */
    background-color: #2ecc71;
    color: white;
    padding: 10px; /* reduced */
    box-sizing: border-box;
}

.logo {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 12px; /* tighter */
    color: #ffffff;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .menu li {
        margin-bottom: 6px; /* reduced */
    }

        .menu li a {
            color: #ffffff;
            text-decoration: none;
            padding: 5px 8px; /* tighter */
            display: block;
            border-radius: 4px;
            transition: background-color 0.3s;
            font-size: 0.9em;
        }

/* Content wrapper */
.content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Main content */
.content {
    flex: 1;
    padding: 15px; /* reduced from 20–30 */
}

/* Footer */
footer {
    background-color: #2ecc71;
    color: white;
    text-align: center;
    padding: 8px 0; /* smaller */
}

/* Headings with tighter spacing */
h1, h2, h3 {
    color: #27ae60;
    margin-top: 10px;
    margin-bottom: 10px;
}

h1 {
    font-size: 1.5em;
}

h2 {
    font-size: 1.2em;
}

h3 {
    font-size: 1.05em;
}

/* Buttons */
button, .btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 5px 10px; /* smaller */
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.85em;
}

    button:hover, .btn:hover {
        background-color: #2ecc71;
    }

/* Forms */
input, select, textarea {
    padding: 2px 4px; /* tighter */
    border: 1px solid #27ae60;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 6px; /* reduced */
    font-size: 0.9em;
}

    input:focus, select:focus, textarea:focus {
        outline: none;
        border-color: #2ecc71;
        box-shadow: 0 0 3px #2ecc71;
    }

form p {
    font-weight: bold;
    margin-bottom: 4px; /* optional: tighten spacing */
}
/* Red*
