/**
 * Custom CSS Overrides for Photo Management System
 * This file contains custom styling that overrides Bulma defaults
 */

/* ========================================
   SELECT DROPDOWN ARROW POSITIONING
   ======================================== */

/* Custom select dropdown arrow positioning */
.select:not(.is-multiple):not(.is-loading)::after {

}

/* ========================================
   FORM ELEMENTS
   ======================================== */

/* Consistent font sizing for form elements */
.input, .select select, .textarea {
    font-size: 0.9rem;
}

/* ========================================
   STEP INDICATORS
   ======================================== */

/* Step indicator styling */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.step.completed {
    /*background: #48c78e;
    color: white; */
}

.step.active {
    /*background: #3273dc;
    color: white;*/
}

.step.pending {
    /*background: #f5f5f5;
    color: #7a7a7a;*/
}

.step-number {
    font-weight: bold;
    font-size: 0.9rem;
}

.step-label {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* ========================================
   MOBILE RESPONSIVENESS
   ======================================== */

@media screen and (max-width: 768px) {
    .step {
        padding: 0.5rem 0.25rem;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
    
    .step-number {
        font-size: 0.8rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Additional utility classes for consistent styling */
.has-equal-height {
    display: flex;
    align-items: stretch;
}

.has-equal-height .column {
    display: flex;
    flex-direction: column;
}

.has-equal-height .box {
    flex: 1;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .no-print {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    .box, .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* ========================================
   NOTIFICATION SYSTEM
   ======================================== */

/* Standardized notification styling */
.notification {
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    position: relative;
    padding: 1.25rem 2.5rem 1.25rem 3.5rem !important;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.notification::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.25rem;
}

/* Success notifications */
.notification.is-success::before {
    content: '\f00c'; /* fa-check */
    color: #48c78e;
}

/* Error/Danger notifications */
.notification.is-danger::before {
    content: '\f071'; /* fa-exclamation-triangle */
    color: #f14668;
}

/* Warning notifications */
.notification.is-warning::before {
    content: '\f071'; /* fa-exclamation-triangle */
    color: #ffdd57;
}

/* Info notifications */
.notification.is-info::before {
    content: '\f05a'; /* fa-info-circle */
    color: #3298dc;
}

/* Primary notifications */
.notification.is-primary::before {
    content: '\f05a'; /* fa-info-circle */
    color: #00d1b2;
}

/* Light notifications */
.notification.is-light::before {
    content: '\f05a'; /* fa-info-circle */
}

/* Notification fade out animation */
.notification.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

/* ========================================
   CARD AND BOX STYLING
   ======================================== */

/* Consistent border radius for all cards and boxes */
.box, .card, .modal-card, .dropdown-content {
    border-radius: 12px !important;
}

.card-header, .modal-card-head {
    border-radius: 12px 12px 0 0 !important;
}

.card-footer, .modal-card-foot {
    border-radius: 0 0 12px 12px !important;
}

/* Input and form elements */
.input, .textarea, .select select {
    border-radius: 8px !important;
}

/* Buttons */
.button {
    border-radius: 8px !important;
}

/* Tables */
.table {
    border-radius: 8px !important;
    overflow: hidden;
}

/* ========================================
   ANIMATION UTILITIES
   ======================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.animate-fade-in {
    animation: fadeInDown 1s ease-out;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}
