/* Custom styles for BNI Roster Generator */

/* Smooth transitions */
* {
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* Better form inputs */
input[type="text"],
input[type="file"],
textarea {
    transition: all 0.2s ease;
}

input[type="text"]:focus,
textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* File input styling enhancement */
input[type="file"]::file-selector-button {
    cursor: pointer;
}

/* Button hover effects */
button,
a.button {
    position: relative;
    overflow: hidden;
}

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

/* Toast notifications */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 16px 24px;
    background: #10b981;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease;
    z-index: 1000;
}

.toast.error {
    background: #ef4444;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Print optimization */
@media print {
    header,
    footer,
    .no-print {
        display: none !important;
    }
}
