/* CV app styles */

/* Credential icons */
.credential-icon-large {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.credential-icon-medium {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.credential-icon-small {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.credential-icon-form {
    width: 80px;
    cursor: pointer;
}

/* Award icons */
.award-icon-large {
    font-size: 48px;
    color: #6c757d;
}

.award-icon-medium {
    font-size: 3rem;
    color: #6c757d;
}

.award-icon-small {
    font-size: 32px;
    color: #6c757d;
}

.award-icon-xlarge {
    font-size: 4rem;
    color: #6c757d;
}

/* Form previews */
.upload-preview {
    display: none;
}

.preview-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

/* Professional summary animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Download button hover effect */
.download-btn {
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Credential card hover effect */
.credential-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

/* Section headers */
.section-header {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #007bff, #6610f2);
}

/* Skills progress bars */
.skill-progress {
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress .progress-bar {
    background: linear-gradient(135deg, #007bff, #6610f2);
    transition: width 1s ease-in-out;
}

/* Timeline styles */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #007bff, #6610f2);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #007bff;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

/* Credential badge hover effect */
.credential-badge {
    transition: transform 0.2s ease-in-out;
}

.credential-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}