body {
    font-family: 'Segoe UI', sans-serif;
    background: #000; /* siyah zemin */
    color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 700px;
    margin: 40px auto;
    background: #ffffff;
    color: #000;
    border: 3px solid #0099ff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 15px #ff6600;
}

h1, h2 {
    color: #ff6600;
    text-align: center;
    margin-top: 0;
}

form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #000;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

input[type="submit"],
button {
    background-color: #0099ff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}

input[type="submit"]:hover,
button:hover {
    background-color: #007acc;
}

.req-item {
    background: #f2f2f2;
    border-left: 5px solid #0099ff;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    color: #000;
    position: relative;
    padding-left: 35px;
}

.req-item::before {
    content: "🎵";
    position: absolute;
    left: 10px;
    top: 10px;
}

.message {
    font-style: italic;
    color: #444;
    margin-top: 5px;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding: 10px;
    background: #000;
    color: #fff;
    font-size: 14px;
    border-top: 2px solid #0099ff;
}
/* Tablo için stil */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #0099ff;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Mesaj kısmı */
td {
    font-style: italic;
    color: #555;
}

/* Gönderilen istekler başlığını biraz daha belirgin yapalım */
h2 {
    color: #ff6600;
    font-size: 1.5em;
    margin-top: 20px;
}