/* Dinçer SAYAN - Profesyonel & Edebi Web Portalı Stilleri */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

body {
    background-color: #FAF8F5;
    color: #0E1726;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

/* Text Word Breaking & Overflow Safety */
p, span, h1, h2, h3, h4, div {
    overflow-wrap: break-word;
    word-break: break-word;
}

button, a {
    touch-action: manipulation;
}

/* Sidebar Active Link */
.sidebar-link.active {
    background: #0E1726;
    border-color: rgba(212, 175, 55, 0.4);
    color: #D4AF37 !important;
    font-weight: 600;
}

.sidebar-link {
    transition: all 0.15s ease-in-out;
}

.sidebar-link:active {
    transform: scale(0.98);
}

/* Form Inputs */
input:focus, textarea:focus, select:focus {
    border-color: #0E1726 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(14, 23, 38, 0.1) !important;
}

/* Professional Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #F4EFE6;
}
::-webkit-scrollbar-thumb {
    background: #DACDB8;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0E1726;
}
