/* Genel Stil */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f0f4f8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: auto;
}

/* Header ve Footer */
header, footer {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header {
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
}

footer {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
}

/* İçerik Alanı */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 160px; /* Header'ın altına yerleştirme */
    margin-bottom: 100px; /* Footer'ın üstüne yerleştirme */
    overflow-y: auto;
    padding: 20px;
}

/* Sürükle ve Bırak Alanı */
.drop-zone {
    border: 2px dashed #007bff;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 40px;
    cursor: pointer;
    text-align: center;
    color: #666;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.drop-zone.dragging {
    background-color: #e9f7ff;
    border-color: #0056b3;
}

/* Dosya Listesi */
.file-list {
    margin-top: 20px;
    max-width: 600px;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 20px auto 0;
    border-top: 1px solid #e0e0e0;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background-color 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.file-item:hover {
    background-color: #f1f1f1;
}

.file-item img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.file-name {
    flex: 1;
    color: #333;
    font-size: 16px;
    margin-right: 15px;
    word-break: break-word;
}

.file-status {
    color: #28a745; /* Hazır yazısı için */
    margin-right: 15px;
}

/* Silme Butonu */
.delete-btn {
    background: none;
    border: none;
    color: red;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
}

/* Dönüştür Butonu */
#convertButton {
    display: none;
    margin-top: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#convertButton:hover {
    background-color: #0056b3;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .drop-zone {
        padding: 30px;
        font-size: 14px;
    }

    .file-item img {
        width: 40px;
        height: 40px;
    }

    .file-name {
        font-size: 14px;
    }

    #convertButton {
        font-size: 14px;
        padding: 10px 20px;
    }
}
