/* App Updates CSS Styles */

/* Badge styles for update types */
.badge-new {
    background-color: #0acf97;
    color: white;
}

.badge-improved {
    background-color: #2c8ef8;
    color: white;
}

.badge-fixed {
    background-color: #fa5c7c;
    color: white;
}

/* Version tag styling */
.version-tag {
    font-family: monospace;
    padding: 2px 8px;
    border-radius: 3px;
    background-color: #eef2f7;
    color: #6c757d;
}

/* Timeline enhancements */
.timeline-header {
    border-bottom: 1px solid #f1f3fa;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.timeline-item .card {
    border-left: 4px solid #2c8ef8;
    transition: all 0.3s ease;
}

.timeline-item:hover .card {
    box-shadow: 0 0.75rem 1.5rem rgba(18,38,63,.1);
    transform: translateY(-2px);
}

/* Change colors based on update type */
.timeline-item.new-feature .card {
    border-left-color: #0acf97;
}

.timeline-item.new-feature:before {
    background-color: #0acf97;
}

.timeline-item.bug-fix .card {
    border-left-color: #fa5c7c;
}

.timeline-item.bug-fix:before {
    background-color: #fa5c7c;
}

.timeline-item.improvement .card {
    border-left-color: #2c8ef8;
}

/* Feedback form enhancements */
.feedback-btn {
    border-radius: 30px;
    padding: 8px 20px;
}

/* Print styles */
@media print {
    .timeline:before {
        display: none;
    }
    
    .timeline-item {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    
    .timeline-item:before {
        display: none;
    }
    
    .feedback-section {
        display: none;
    }
} 