/* Genel Stiller */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

main {
    flex: 1;
    padding: 2rem 0;
}

/* Kartlar */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-weight: 600;
}

/* Butonlar */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.btn-success {
    background-color: #198754;
    border-color: #198754;
    box-shadow: 0 2px 4px rgba(25, 135, 84, 0.2);
}

.btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.3);
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
}

.btn-danger:hover {
    background-color: #bb2d3b;
    border-color: #b02a37;
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

/* Tablolar */
.table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
    border-top: none;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Form Elemanları */
.form-control {
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Uyarı Mesajları */
.alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Dashboard Kartları */
.dashboard-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
}

.dashboard-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}

.dashboard-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.dashboard-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* QR Kod Konteyner */
.qr-code-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    text-align: center;
}

.qr-code-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

/* Sıralama Öğeleri */
.sortable-item {
    background-color: #fff;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    cursor: move;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sortable-item:hover {
    background-color: #f8f9fa;
}

/* Tema Kartları */
.tema-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.tema-card.active {
    border: 2px solid #0d6efd;
}

.tema-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Ana Sayfa Özellikleri */
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6c757d;
}

/* Footer Sosyal Medya İkonları */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.social-icons a:hover {
    background-color: #0d6efd;
    transform: translateY(-3px);
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .dashboard-card i {
        font-size: 2.5rem;
    }
    
    .dashboard-card p {
        font-size: 0.9rem;
    }
    
    .table-responsive {
        border-radius: 8px;
        overflow: hidden;
    }
} 