:root {
    --primary-color: #ff6b00;
    --secondary-color: #ff9d00;
}

.profile-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.profile-header {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
}

.profile-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.9;
}

.profile-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.profile-avatar i {
    font-size: 48px;
    color: var(--primary-color);
}

.profile-header h1 {
    margin-top: 1rem;
    color: #333;
    font-size: 2rem;
}

.user-email {
    color: #666;
    font-size: 1.1rem;
}

.profile-content {
    padding: 2rem;
}

.profile-section {
    margin-bottom: 2rem;
}

.profile-section h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
}

.info-details {
    flex: 1;
}

.info-details label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.info-details p {
    color: #333;
    font-weight: 500;
}

.change-password-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.profile-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.edit-profile-btn,
.logout-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.edit-profile-btn {
    background: var(--primary-color);
    color: white;
}

.logout-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.edit-profile-btn:hover,
.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,0,0.2);
}

/* Estilos para la línea de tiempo de actividad */
.activity-timeline {
    margin-top: 1rem;
}

.timeline-item {
    padding: 1rem;
    border-left: 2px solid var(--primary-color);
    margin-left: 1rem;
    position: relative;
    margin-bottom: 1rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 1.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--primary-color);
    border-radius: 50%;
}
