body {
    color: black;
    background-color: black;
    height: 100%;
    min-height: 100vh;
    margin: 0;
    
}

header {
    background-color: black; 
    color: black;
    padding: 15px 0;
    width: 100%;
}



.box {
    padding: 10% 0;
}

.calendar-card {
    margin-bottom: 20px;
}
.storage-box {
    width: 90%;
}

.footera {
    text-decoration: none;
    color: red;
}

a {
    text-decoration: none;
}


footer {
    background-color: black;
    padding: 20px 0;
    bottom: 0; 
    width: 100%;
    margin-top: 22Vh;
}


tr {
    position: relative;
}

/* Contenedor de los íconos */


/* Mostrar los íconos al pasar el cursor sobre la fila */
tr:hover .icon-container {
    display: block;
}

.icon-container a {
    margin-left: 10px;
    text-decoration: none;
}

.icon-container a:hover {
    color: white; /* O el color que prefieras para el hover */
}

.fa-plus {
    color: rgb(2, 145, 228);
}
.fa-trash {
    color: red;
}

.fa-bars{
    color: red;
}


.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}
.error-title {
    font-size: 8rem;
    font-weight: bold;
    color: white;
}
.error-message {
    font-size: 1.5rem;
    color: white;
}
.btn-custom {
    background-color: red;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
}
.btn-custom:hover {
    background-color: #138496;
    color: white;
}




.config-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    z-index: 4;
}
.dropdown-menu {
    display: none;
    position: fixed;
    top: 60px;
    right: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px;
    z-index: 100;
}
.dropdown-menu button {
    padding: 10px;
    width: 100%;
    margin: 5px 0;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.dropdown-menu button:hover {
    background-color: #f0f0f0;
}
.dropdown-menu #changeBg {
    background-color: #4CAF50;
    color: white;
}
.dropdown-menu #logout {
    background-color: #f44336;
    color: white;
}

@keyframes vibrate {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-2px); }
    40%, 80% { transform: translateX(2px); }
}

.vibrate {
    animation: vibrate 0.3s linear infinite;
}

.row {

    margin: auto;
}