/* --------------------------
   CSS Variables (Renk & Font)
--------------------------- */
:root {
    --text-color: #8D8D8D;
    --title-color: #333333;
    --white-color: #FFFFFF;
    --grey-color: #C9C9C9;
    --green-color: #006600;
    --orange-color: #003300;
    --button-bg: #515151;
    --button-border: #858585;
    --font-base: 'Tahoma', Verdana, sans-serif;
    --font-small: 11px;
    --font-normal: 13px;
    --font-large: 16px;
    --line-height: 1.5;
}

/* --------------------------
   Global Styles
--------------------------- */
body {
    font-family: var(--font-base);
    font-size: var(--font-normal);
    color: var(--text-color);
    line-height: var(--line-height);
    margin: 0;
    padding: 0;
    background-color: #fff;
}

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

/* --------------------------
   Text & Titles
--------------------------- */
.text {
    color: var(--text-color);
}
.text a {
    color: var(--text-color);
    text-decoration: underline;
}
.text a:hover {
    color: #000;
    text-decoration: none;
}

.title {
    font-weight: bold;
    color: var(--title-color);
    font-size: var(--font-normal);
}
.title_white {
    font-size: var(--font-small);
    font-weight: bold;
    color: var(--white-color);
    letter-spacing: 2px;
}
.title_orange {
    font-size: var(--font-large);
    font-weight: bolder;
    color: var(--orange-color);
}
.title_green {
    font-size: var(--font-normal);
    font-weight: bolder;
    color: var(--green-color);
}

/* --------------------------
   Forms & Buttons
--------------------------- */
input, select, textarea, .input, .inputC {
    font-family: var(--font-base);
    font-size: var(--font-normal);
    color: #666;
    padding: 6px;
    border: 1px solid #666;
    background-color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
}
.inputC {
    background-color: #3E3E3E;
    color: #CCC;
}
.button {
    font-family: var(--font-base);
    font-size: var(--font-small);
    font-weight: bold;
    color: var(--white-color);
    background-color: var(--button-bg);
    border: 1px solid var(--button-border);
    height: 35px;
    padding: 0 15px;
    border-radius: 5px;
    cursor: pointer;
}
.button:hover {
    opacity: 0.85;
}

/* --------------------------
   Scrollable Div
--------------------------- */
.divscrolling {
    max-height: 450px;
    width: 100%;
    overflow: auto;
}

/* Modern Scrollbar */
.divscrolling::-webkit-scrollbar {
    width: 12px;
}
.divscrolling::-webkit-scrollbar-track {
    background: #333;
}
.divscrolling::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 6px;
    border: 3px solid #333;
}

/* --------------------------
   Lists
--------------------------- */
.list ul, .list1 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.list ul li {
    background: url(images/list_marker.gif) no-repeat left top;
    padding-left: 8px;
    line-height: 1.5;
}
.list1 ul li {
    background: url(images/list_marker1.gif) no-repeat left top;
    padding-left: 12px;
    line-height: 1.5;
}
.list ul li a, .list1 ul li a {
    text-decoration: underline;
}
.list ul li a:hover, .list1 ul li a:hover {
    text-decoration: none;
}

/* --------------------------
   Images
--------------------------- */
.Image_Left {
    margin-right: 20px;
    margin-bottom: 10px;
    float: left;
}

/* --------------------------
   Table Reset
--------------------------- */
table {
    border-collapse: collapse;
    width: 100%;
}
td {
    padding: 0;
    border: none;
}

/* --------------------------
   Links
--------------------------- */
.link_Gry {
    color: var(--grey-color);
    text-decoration: none;
    padding-left: 15px;
}
.link_Wh {
    color: var(--white-color);
    text-decoration: none;
    padding-left: 15px;
}
.text_white a {
    color: var(--white-color);
    text-decoration: underline;
}
.text_white a:hover {
    font-weight: bold;
}

/* --------------------------
   Responsive Layout (Flex/Grid)
--------------------------- */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.flex-item {
    flex: 1 1 300px;
}

/* Örnek grid kullanım */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Responsive Typography */
@media (max-width: 768px) {
    body {
        font-size: 12px;
    }
    .title_orange {
        font-size: 14px;
    }
}
