﻿
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #F1F8F8;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 0;
    color: black;
}

.sidebar-header {
    background-color: #F1F8F8;
    padding: 20px 15px 10px;
    text-align: center;
    position: relative;
}

    .sidebar-header h2 {
        margin: 0;
        font-size: 15px;
    }

    .sidebar-header .description {
        font-size: 12px;
        color: black;
    }

.sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 13px;
    color: black;
    display: block;
}

    .sidebar a:hover {
        background-color: #BFC1C5;
    }

.topbar {
    background-color: #aecfb8;
    color: #00140a;
    padding: 11px 11px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.menu-icon {
    cursor: pointer;
    margin-right: 15px;
    font-size: 15px;
}

.main-content {
    padding: 20px;
    transition: margin-left 0.3s;
}



.logo-img {
    width: 140px; /* tamaño fijo */
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

button {
    padding: 12px 30px;
    background-color: #2ecc71;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    button:hover {
        background-color: #27ae60;
    }
