/* PeerXeck Custom Styles */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.375rem;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.progress {
    background-color: #e9ecef;
}

.progress-bar {
    font-size: 0.7rem;
    line-height: 15px;
}

/* Custom progress bar heights */
.progress-sm {
    height: 15px;
}

/* Badge styling */
.badge {
    font-size: 0.8em;
}

/* Review cards */
.review-card {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #fff;
}

/* Score visualization */
.score-breakdown {
    margin-top: 1rem;
}

.score-item {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .col-md-3,
    .col-md-4,
    .col-md-6,
    .col-md-8,
    .col-md-9 {
        margin-bottom: 0.5rem;
    }
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Enhanced form styling */
.form-control:focus,
.form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Paper abstract styling */
.paper-abstract {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 1rem;
    margin: 1rem 0;
}

/* Review details */
.review-details {
    font-size: 0.9rem;
}

.review-details h6 {
    color: #495057;
    font-weight: 600;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Utility classes */
.text-small {
    font-size: 0.875rem;
}

.border-start-primary {
    border-left: 3px solid #007bff !important;
}

.border-start-success {
    border-left: 3px solid #198754 !important;
}

.border-start-warning {
    border-left: 3px solid #ffc107 !important;
}

.border-start-danger {
    border-left: 3px solid #dc3545 !important;
}

/* Feedback floating button */
.feedback-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1040;
}

.feedback-btn {
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    padding: 8px 16px;
    text-decoration: none;
    white-space: nowrap;
}

.feedback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive feedback button */
@media (max-width: 768px) {
    .feedback-float {
        bottom: 15px;
        right: 15px;
    }
    
    .feedback-btn .feedback-text {
        display: none;
    }
    
    .feedback-btn {
        padding: 10px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
} 