/* Base Styles */
* {
    font-family: 'Tajawal', sans-serif;
}

/* Upload Container Styles */
.upload-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F9FA;
    direction: rtl;
}

.upload-card {
    width: 895px;
    height: 424px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 40px 90px;
    gap: 40px;
    background: #FFFFFF;
    border: 2px dashed #DEE2E6;
    border-radius: 8px;
    position: relative;
}

.upload-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px dashed #DEE2E6;
    border-radius: 8px;
    pointer-events: none;
}

.upload-area {
    width: 816px;
    height: 156px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    cursor: pointer;
    border: 2px dashed #DEE2E6;
    border-radius: 8px;
    margin-bottom: 0;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.upload-area:hover {
    border-color: #0D6EFD;
    background-color: #F8F9FA;
}

.upload-area:hover .upload-icon {
    transform: translateY(-2px);
    color: #0B5ED7;
}

.upload-area::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px dashed #DEE2E6;
    border-radius: 8px;
    pointer-events: none;
}

.upload-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #F8F9FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-icon {
    font-size: 24px;
    color: #0D6EFD;
    transition: transform 0.2s ease, color 0.2s ease;
}

.upload-text {
    text-align: center;
}

.upload-text h2 {
    font-size: 16px;
    font-weight: 500;
    color: #212529;
    margin-bottom: 8px;
}

.upload-text p {
    font-size: 14px;
    color: #6C757D;
    margin: 0;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-button {
    width: 307.98px;
    height: 72px;
    background: #0055ba;
    border-radius: 8px;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.upload-button:disabled {
    background: #0055ba;
    color: white;
    cursor: not-allowed;
}

.upload-button:hover {
    background: #0044a9;
}
