/* 
 * Estilos para la interfaz de administración de contraseñas
 * Archivo: css/pbf-admin.css
 */

.pbf-password-management {
    margin: 20px 0;
    padding: 25px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pbf-password-management h3 {
    margin-top: 0;
    color: #23282d;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.pbf-passwords-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 极速飞艇怎么玩
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pbf-passwords-table th,
.pbf-passwords-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.pbf-passwords-table th {
    background: #f1f1f1;
    font-weight: bold;
    color: #23282d;
}

.pbf-passwords-table td {
    vertical-align: middle;
}

.pbf-passwords-table code {
    background: #f7f7f7;
    padding: 4px 8px;
    border-radius: 3px;
    border: 1px solid #e1e1e1;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.pbf-new-password {
    padding: 8px 12px;
    width: 180px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.pbf-change-password {
    padding: 8px 16px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 14px;
}

.pbf-change-password:hover {
    background: #005a87;
}

.pbf-change-password:disabled {
    background: #a0a5aa;
    cursor: not-allowed;
}

.pbf-change-result {
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 13px;
}

.pbf-management-notes {
    margin-top: 25px;
    padding: 20px;
    background: #e7f3ff;
    border-left: 4px solid #0073aa;
    border-radius: 4px;
}

.pbf-management-notes h4 {
    margin-top: 0;
    color: #0073aa;
    font-size: 16px;
}

.pbf-management-notes ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.pbf-management-notes li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.pbf-management-notes code {
    background: #d1e5f7;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .pbf-passwords-table {
        display: block;
        overflow-x: auto;
    }
    
    .pbf-new-password {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .pbf-change-password {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .pbf-change-result {
        display: block;
        margin-left: 0 !important;
        margin-top: 5px;
    }
}