/* رێکخستنی گشتی و ڕەنگە نەرمەکان بۆ چاو */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 550px;
    text-align: center;
    border: 1px solid #f1f5f9;
}

h2 {
    color: #0f172a;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
}

.drop-zone {
    border: 2px dashed #cbd5e1;
    padding: 35px 20px;
    border-radius: 12px;
    cursor: pointer;
    background-color: #f8fafc;
    transition: all 0.25s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.drop-zone:hover {
    border-color: #4f46e5;
    background-color: #f5f3ff;
}

.icon-container {
    margin-bottom: 15px;
    color: #64748b;
    transition: color 0.25s;
}

.drop-zone:hover .icon-container {
    color: #4f46e5;
}

.upload-icon {
    width: 48px;
    height: 48px;
}

.drop-zone p {
    color: #334155;
    font-size: 14px;
    font-weight: 500;
}

.drop-zone .limit-text {
    color: #64748b;
    font-size: 12px;
    margin-top: 5px;
}

.file-name-display {
    margin-top: 15px;
    font-weight: 600;
    color: #4f46e5;
    font-size: 13px;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 150px;
    overflow-y: auto;
    width: 100%;
}

/* شاردنەوەی تەواو و هەمیشەیی دوگمە لاکێشەییە بنەڕەتییەکەی وێبگەڕ */
input[type="file"] {
    display: none !important;
}

.btn {
    background-color: #4f46e5;
    color: #ffffff;
    border: none;
    padding: 14px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 25px;
    width: 100%;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}

.btn:hover {
    background-color: #4338ca;
    box-shadow: 0 4px 12px -1px rgba(79, 70, 229, 0.3);
}

.btn:disabled {
    background-color: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
}

#status {
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    padding: 10px;
    border-radius: 6px;
}

.success {
    color: #15803d;
    background-color: #f0fdf4;
}

.error {
    color: #b91c1c;
    background-color: #fef2f2;
}

.info {
    color: #0369a1;
    background-color: #f0f9ff;
}

/* مافی خاوەندارێتی */
.footer {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 12px;
    color: #64748b;
}

.footer a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer a:hover {
    color: #4338ca;
    text-decoration: underline;
}

/* گونجاندن لەگەڵ شاشە جیاوازەکان (مۆبایل و تابلێت) */
@media (max-width: 640px) {
    body {
        padding: 10px;
    }
    .container {
        padding: 25px 20px;
        border-radius: 12px;
    }
    h2 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .drop-zone {
        padding: 25px 15px;
    }
    .upload-icon {
        width: 40px;
        height: 40px;
    }
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}