@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

html {
    font-size: 13px;
    -webkit-text-size-adjust: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 14px;
    }
}

body {
    background-color: #f0f2f5;
    color: #2d3436;
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
}

/* Modern Card Style */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    font-weight: 600;
}

/* Button Modernization */
.btn {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.35rem 0.8rem;
    font-size: 0.875rem;
}

.btn i {
    font-size: 1.1em;
}

/* Shortcuts Toolbar */
.shortcut-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.shortcut-bar .btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .btn span {
        display: none !important;
        /* Mobilde yazıları gizle */
    }

    .btn {
        padding: 0.5rem;
        min-width: 40px;
        min-height: 40px;
    }

    .card-body {
        padding: 1rem;
    }

    h1 {
        font-size: 1.35rem !important;
    }

    h2 {
        font-size: 1.25rem !important;
    }
}

/* Table Enhancements */
.table-responsive {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: #636e72;
}

/* Global focus */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}