/* License Management System - Temel Stil Dosyası */
body {
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
}
.app-admin-wrap {
    min-height: 100vh;
    background: #f8f9fa;
}
.card {
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.card-header {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.navbar {
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}
.navbar-brand img {
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-radius: 8px;
}
.badge {
    font-size: 1em;
    border-radius: 0.5em;
}
.table td {
    vertical-align: middle;
}
.bg-gradient-primary {
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%) !important;
    color: #fff !important;
}
.bg-gradient-success {
    background: linear-gradient(90deg, #28a745 0%, #218838 100%) !important;
    color: #fff !important;
}
.bg-gradient-info {
    background: linear-gradient(90deg, #17a2b8 0%, #138496 100%) !important;
    color: #fff !important;
}
.bg-gradient-dark {
    background: linear-gradient(90deg, #343a40 0%, #23272b 100%) !important;
    color: #fff !important;
}
.fw-bold {
    font-weight: 700 !important;
}
.fs-3 {
    font-size: 2rem;
}
.fa-2x {
    font-size: 2em;
}
.main-header {
    border-bottom: 1px solid #e3e3e3;
}
.navbar-nav .nav-link {
    transition: color 0.2s, background 0.2s;
    border-radius: 6px;
    padding: 0.5rem 1rem;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    background: #f0f4ff;
    color: #0d6efd !important;
}

.font-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
    font-size: 0.85rem;
}
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.bg-success-soft {
    background-color: rgba(40, 167, 69, 0.15);
}
.bg-danger-soft {
    background-color: rgba(220, 53, 69, 0.15);
}
.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.15);
}
.bg-primary-soft {
    background-color: rgba(0, 123, 255, 0.15);
}
.bg-secondary-soft {
    background-color: rgba(108, 117, 125, 0.15);
}
.text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.85rem;
}
#license-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
#license-table td {
    vertical-align: middle;
}
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}
.license-stats {
    font-size: 0.85rem;
}
.license-stats .badge {
    padding: 0.5rem 0.75rem;
}
@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}
.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    z-index: 9999;
    animation: fadeInOut 1.5s forwards;
}
@media (max-width: 767px) {
    .fs-3 { font-size: 1.5rem; }
    .fa-2x { font-size: 1.5em; }
    .navbar { border-radius: 0.5rem; }
}
