@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700');
@import url('button-chrome.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
}
body {
    box-sizing: border-box;
    background-color: hsl(0, 0%, 96%);
    font-size: 15px;
    font-family: 'Segoe UI', sans-serif;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
}

[hidden] {
    display: none !important;
}
.hidden {
    display: none !important;
}

.container {
    overflow: auto;
}

a {
    color: blue;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

a.noclick {
    cursor: default;
}

p {
    margin: 1em 0;
}
p:first-child {
    margin-top: 0;
}
p:last-child {
    margin-bottom: 0;
}

#verifyForm p {
    color: white;
    font-family: 'Open Sans';
    font-size: 13px;
    margin: 0.2em 0 !important;
}

input[type=text],
input[type=email],
input[type=password],
input[type=url],
textarea {
    width: 300px;
    padding: 3px 5px;
    background-color: rgba(0,0,0,.01);
    border: 1px solid hsl(0, 0%, 80%);
    box-shadow: inset 1px 1px 2px rgba(0,0,0,.03);
}
textarea {
    resize: vertical;
    min-height: 52px;
}
input:focus {
    outline: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: hsl(209, 62%, 60%);
    box-shadow: 0 0 2px hsla(199, 73%, 43%, 0.8);
    color: black;
}
/* input[type="text"]:read-only, */
/* input[type="password"]:read-only, */
/* input[type="url"]:read-only, */
/* input[type="email"]:read-only { */
    /* outline: none; */
    /* border: none; */
    /* box-shadow: none; */
/* } */
input[type=button],
input[type=submit] {
    padding: 3px 10px 4px;
    font-size: 13px;
    cursor: pointer;
}
input[type=file] {
    font-size: 13px;
    cursor: pointer;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
input[type=email]::placeholder {
    color: rgba(0,0,0,.4);
    font-style: italic;
}

.notice {
    font-size: 0.9em;
}
.notice span {
    display: block;
    margin: 1px 0;
    padding: 2px 5px;
}
.notice.error span {
    color: hsl(0, 50%, 40%);
    background-color: hsl(0, 100%, 98%);
    border: 1px solid hsla(0, 100%, 40%, 0.1);
}
.notice.okay span {
    color: hsl(120, 50%, 30%);
    background-color: hsl(120, 80%, 96%);
    border: 1px solid hsla(120, 100%, 40%, 0.15);
}

span.count {
    margin-bottom: 0.5em;
    display: inline-block;
}

table.hover tbody tr:hover {
    background-color: rgba(0,0,0,.02);
}

table tbody tr.selected {
    background-color: rgba(0,0,0,.05);
}

.lang-switch {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.lang-switch .icon {
    margin-right: 10px;
    background-image: url("../images/language-dark.png");
    width: 32px;
    height: 32px;
}
header .lang-switch .icon {
    background-image: url("../images/language-light.png");
}
header .lang-switch select {
    border: none;
}

/* Sayfa Numaralandırma */

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-top: 20px;
}

.pagination a {
    display: block;
    padding: 10px 15px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border-radius: 5px;
}

.pagination a.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination a:hover {
    background-color: #0056b3;
    color: white;
}
/* İstatistik Sayfası Butonlar */
.filter-buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.filter-buttons button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-buttons button:hover {
    background-color: #45a049;
}


