/* public/assets/css/app.css */

body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    transition: background 0.5s ease;
}

/* Scrollbar gizleme ve stillendirme */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #111;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* --- ÖZEL LOGO STİLLERİ --- */
.exclamation-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    transform: rotate(30deg); 
    transform-origin: center bottom;
    line-height: 1;
    margin-left: -0.65em; 
    position: relative;
    top: -0.30em;
    vertical-align: baseline;
    z-index: 10; 
}

.exclamation-line {
    width: 0.18em;
    height: 0.55em;
    background-color: #ff003c;
    border-radius: 0.09em;
    box-shadow: 0 0 0.15em rgba(255, 0, 60, 0.5);
    margin-bottom: 0.08em;
}

.exclamation-dot {
    width: 0.20em;
    height: 0.20em;
    background-color: #ff003c;
    border-radius: 50%;
    box-shadow: 0 0 0.15em rgba(255, 0, 60, 0.6);
}

@keyframes pulse-red-dot {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.7); }
    70% { transform: scale(1.15); box-shadow: 0 0 0 0.3em rgba(255, 0, 60, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 60, 0); }
}

.animate-pulse-red {
    animation: pulse-red-dot 2s infinite;
}

/* Yüzen Buton Animasyonu */
.floating-backup-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.5);
    animation: float 3s ease-in-out infinite;
}
.floating-backup-btn:hover {
    animation-play-state: paused;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Tarih Inputlar için Dark Mode */
input[type="datetime-local"] {
    color-scheme: dark;
}
