﻿/* Genel ayarlar */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

#mySummariesBtn {
    display: none;
}

.left, .right {
    display: flex;
    gap: 10px;
}

/* Butonlar */
.login-button {
    padding: 6px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.logout-button {
    padding: 6px 12px;
    background-color: #e6041f;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: none;
}

/* Input Alanı */
.input-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.input-field {
    padding: 8px;
    width: 100%;
    max-width: 300px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit-button {
    padding: 8px 16px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Summary Alanı */
.summary-container {
    width: 90%;
    max-width: 800px;
    min-height: 200px;
    height: auto;
    margin: 0 auto 20px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
    background-color: #f9f9f9;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 10px;
    margin-top: auto;
}

/* Yükleniyor Animasyonu */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1.8px);
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 9998;
    display: none;
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
    text-align: center;
}

    .loader::before {
        content: "Summarizing..";
        color: #333;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 32px;
        letter-spacing: 2px;
        display: inline-block;
        box-sizing: border-box;
        animation: floating 1s ease-out infinite alternate;
    }

    .loader::after {
        content: "";
        width: 100%;
        height: 10px;
        background: rgba(0, 0, 0, 0.15);
        position: absolute;
        left: 0;
        top: 100%;
        filter: blur(4px);
        border-radius: 50%;
        box-sizing: border-box;
        animation: animloader 1s ease-out infinite alternate;
    }

/* Animasyonlar */
@keyframes floating {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-25px);
    }
}

@keyframes animloader {
    0% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1.2);
    }
}

/* Mobil Uyumluluk */
@media (max-width: 480px) {
    .input-section {
        flex-direction: column;
    }

    .input-field {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Toast Mesajları */
.success-toast #message-type {
    color: #28a745;
}

.error-toast #message-type {
    color: red;
}

.warning-toast #message-type {
    color: #ffc107;
}
