/* Estilos para la sección de usuario */
.user-content {
    padding: 20px;
}

.user-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: #fff;
}

.user-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.user-card .card-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 20px;
    border: none;
}

.user-card .card-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.user-card .card-body {
    padding: 25px;
}

.user-card .card-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.user-card .package-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.user-card .package-info p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

.user-card .package-info .price {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.user-card .package-info .tests-count {
    color: #3498db;
    font-weight: 500;
}

.user-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    display: inline-block;
}

.user-btn-primary {
    background: #3498db;
    border-color: #3498db;
    color: white;
}

.user-btn-primary:hover {
    background: #2980b9;
    border-color: #2980b9;
    color: white;
    transform: translateY(-2px);
}

.user-btn-success {
    background: #2ecc71;
    border-color: #2ecc71;
    color: white;
}

.user-btn-success:hover {
    background: #27ae60;
    border-color: #27ae60;
    color: white;
    transform: translateY(-2px);
}

.user-alert {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.user-alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.user-alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.user-alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.user-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 5px;
}

.user-badge-primary {
    background: #3498db;
    color: white;
}

.user-badge-success {
    background: #2ecc71;
    color: white;
}

.user-badge-warning {
    background: #f1c40f;
    color: #2c3e50;
}

.user-section-title {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.user-section-subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.user-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.user-features li {
    padding: 10px 0;
    color: #555;
    font-size: 1rem;
}

.user-features li i {
    color: #3498db;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.user-progress {
    height: 8px;
    border-radius: 4px;
    background: #ecf0f1;
    margin: 10px 0;
}

.user-progress-bar {
    background: #3498db;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.user-tooltip {
    position: relative;
    display: inline-block;
}

.user-tooltip .tooltip-text {
    visibility: hidden;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.user-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
} 