/* Temel sıfırlama veya global stiller */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Daha sonra özel font ekleyebiliriz */
    line-height: 1.6;
    background-color: #f4f4f4; /* Hafif gri arka plan */
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    font-weight: bold;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #4b4b4b;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ccae03ff;
    border-radius: 10px;
    border: 3px solid #4b4b4b;
}

::-webkit-scrollbar-thumb:hover {
    background: #b39f03;
}

::-webkit-scrollbar-corner {
    background: #ebf889;
}
body {
    scrollbar-color: #ccae03ff #ebf889;
    scrollbar-width: thin;
}
.content-card::-webkit-scrollbar {
    width: 8px;
}
.content-card::-webkit-scrollbar-track {
    background: #ebf889;
}
.content-card::-webkit-scrollbar-thumb {
    background: #ccae03ff;
}
.content-card::-webkit-scrollbar-thumb:hover {
    background: #b39f03;
}