@font-face {
    font-family: 'GetSend Sans';
    src: url(../../assets/fonts/GetSendSans-Regular.ttf);
    font-weight: 400;
}
@font-face {
    font-family: 'GetSend Sans';
    src: url(../../assets/fonts/GetSendSans-Bold.ttf);
    font-weight: 700;
}
@font-face {
    font-family: 'Sender';
    src: url(../../assets/fonts/Sender-Regular.ttf);
    font-weight: 700;
}

body {
    font-family: 'GetSend Sans', sans-serif;
    background: #f7f9fc;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.logo-container {
    text-align: center;
    margin-bottom: 1rem;
}

.logo-container img {
    width: 160px;
    height: auto;
}

h1 {
    font-family: 'Sender', sans-serif;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

#dropzone {
    border: 2px dashed #ccc;
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    color: #999;
    margin-bottom: 2rem;
    transition: background 0.3s;
}

#dropzone.dragover {
    background: #e6f7ff;
    border-color: #3399ff;
    color: #3399ff;
}

#fileInput {
    display: none;
}

table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

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

th {
    background-color: #f0f4f8;
}

.download-link {
    text-decoration: none;
    color: #007bff;
}

.download-link:hover {
    text-decoration: underline;
}
