﻿/* --- Depo Uygulaması için Şirin ve Yumuşak bir Tema --- */

/* 1. Genel Gövde ve Yazı Tipleri */
body {
    font-family: 'Nunito', sans-serif; /* Yeni yumuşak fontumuzu kullan */
    background-color: #fdfaff; /* Çok açık bir lavanta-pembe arkaplan */
    color: #5d5463; /* Sert siyah yerine metinler için yumuşak, koyu bir mor */
}

/* Ana Başlıklar ("Ürün Listesi" gibi) */
h2 {
    font-family: 'Pacifico', cursive; /* Güzel el yazısı fontumuzu kullan */
    color: #e6739f; /* Hoş bir gül pembesi rengi */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05); /* Öne çıkması için hafif bir gölge */
    margin-bottom: 25px;
    font-size: 3em;
}

/* 2. Navbar (Gezinme Çubuğu) Stili */
.navbar-inverse {
    background-color: #ffffff; /* Navbar'ı beyaz yap */
    border-color: #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

    .navbar-inverse .navbar-brand {
        font-family: 'Pacifico', cursive;
        color: #a079c2 !important; /* Marka için hoş bir lavanta rengi */
        font-size: 24px;
    }

    .navbar-inverse .navbar-nav > li > a {
        color: #888 !important;
        font-weight: 700;
    }

        .navbar-inverse .navbar-nav > li > a:hover {
            color: #e6739f !important; /* Üzerine gelince vurgula */
        }

/* 3. Buton Stilleri */
.btn {
    border-radius: 20px; /* Yuvarlak butonlar */
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .btn:hover {
        transform: translateY(-2px); /* Üzerine gelince butonları "yukarı kaldır" */
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

/* Birincil Buton (Ara) */
.btn-primary {
    background-color: #a079c2; /* Lavanta */
    color: white;
}

    .btn-primary:hover {
        background-color: #8c60b3;
        color: white;
    }

/* Başarı Butonu (Ekle) */
.btn-success {
    background-color: #50c878; /* Hoş bir nane-zümrüt yeşili */
    color: white;
}

    .btn-success:hover {
        background-color: #3aa862;
        color: white;
    }

/* Tehlike Butonu (Kaldır) */
.btn-danger {
    background-color: #ff758c; /* Tehlike için yumuşak bir mercan/pembe */
    color: white;
}

    .btn-danger:hover {
        background-color: #ff5c77;
        color: white;
    }

/* Varsayılan Buton (Aramayı Temizle) */
.btn-default {
    background-color: #f0f0f0;
    color: #555;
}

    .btn-default:hover {
        background-color: #e0e0e0;
        color: #333;
    }

/* 4. Tablo Stilleri */
.table {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden; /* Kenar yuvarlaklığının tabloda çalışması için önemli */
}

    .table thead tr {
        background-color: #f7eefc; /* Tablo başlığı için açık lavanta */
        color: #8c60b3;
    }

    .table th, .table td {
        border-top: none !important;
        border-bottom: 1px solid #f0e6f5;
        vertical-align: middle !important;
    }

    .table tbody tr:hover {
        background-color: #fdf5f8; /* Satır üzerine gelince çok hafif bir pembe */
    }

/* 5. Form ve Kart Stilleri */
.form-control {
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: none;
}

    .form-control:focus {
        border-color: #a079c2;
        box-shadow: 0 0 5px rgba(160, 121, 194, 0.5);
    }

/* Giriş kutusunu daha güzel yapmak için "Kart" stili */
.login-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    max-width: 400px;
    margin: 50px auto;
}
