/* Genel Ayarlar */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

/* Kapsayıcı */
.form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    text-align: center;
}

/* Başlık */
h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffcc00;
}

/* Resim için Stil */
.image-container {
    margin-top: 20px;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Etiketler ve Girişler */
label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    font-weight: bold;
    color: #bbbbbb;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #444;
    font-size: 1rem;
}

/* Input ve Select */
input, select {
    background-color: #2a2a2a;
    color: #ffffff;
}

input:focus, select:focus {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 4px #ffcc00;
}

/* Buton */
button {
    background-color: #ffcc00;
    color: #121212;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e6b800;
}

/* Tablo */
table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #444;
}

table th {
    background-color: #333;
    color: #ffcc00;
    text-transform: uppercase;
}

.status.loading {
    color: #ffcc00;
    font-weight: bold;
}

.status.active {
    color: #28a745;
    font-weight: bold;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.5;
    }
}

table tr:nth-child(even) {
    background-color: #1a1a1a;
}

table tr:hover {
    background-color: #333;
}

/* Başarı ve Hata Mesajları */
.success {
    background-color: #28a745;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.error {
    background-color: #dc3545;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Bağlantılar */
a {
    color: #ffcc00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .form-container {
        padding: 15px;
    }

    table, th, td {
        font-size: 0.9rem;
    }

    button {
        font-size: 0.9rem;
    }
}

