﻿.Historialportada {
    background-color: #001d35;
    height: auto;
    width: 100%;
    text-align: center;
    overflow: visible;
    margin-top: -24px;
}

.Historialtext {
    padding: 20px 20px 0px 25px;
    margin-top: 40px;
    background: rgba(80,80,80,0.3);
    display: inline-block;
    color: White;
    width: 30%;
    border-radius: 8px;
}
.retiro-input {
    width: 100%;
    max-width: 200px;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    background-color: white; /* 👈 Fondo blanco visible */
    color: #1e293b; /* Texto oscuro sobre fondo claro */
}

    .retiro-input:focus {
        outline: none;
        border: 1px solid #00d4ff;
        box-shadow: 0 0 5px rgba(0,212,255,0.5); /* 👀 Resalta al enfocar */
    }

.retiro-info {
    display: inline-block;
    margin-left: 5px;
    font-weight: 600;
    color: #ffd700; /* 💛 Doradito profesional */
}

.error-info {
    display: block;
    margin-top: 10px;
    color: orange;
    font-weight: bold;
}

.historial-panel {
    background-color: #1a1a1a;
    border: 1px solid #444;
    padding: 20px; /* 👉 Espacio interno correcto */
    margin-top: 20px; /* 👉 Separación externa más corta */
    border-radius: 8px;
    color: white;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

.Historialgridview {
    width: 100%;
    border-collapse: collapse;
    background-color: #2e2e2e;
    color: white;
    font-size: 14px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

    .Historialgridview th {
        background-color: #444;
        color: #FFD700;
        padding: 10px;
    }

    .Historialgridview td {
        border: 1px solid #555;
        padding: 8px;
    }

    .Historialgridview tr:nth-child(even) {
        background-color: #3a3a3a;
    }

    .Historialgridview tr:hover {
        background-color: #505050;
    }


@media (max-width: 600px) {
    .Historialtext {
       
        width: 94%;
       
    }
}