@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    background: linear-gradient(to left, #ffffff, #a8a7a7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-files {
    width: 90%;
    max-width: 400px;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.title {
    font-size: 1.5rem;
    color: #0044cc;
    font-weight: 600;
    text-align: center;
}

.file-object {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.file-object.uploaded::after {
    content: '✔';
    color: green;
    font-size: 1.2rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.logo {
    width: 50px;
    height: 55px;
    background: linear-gradient(to top, #0f71dbfb, #889aeca4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.logo span {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
}

.file-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.file-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #003cff;
}

.file-name.faded {
    color: rgba(0, 60, 255, 0.3);
}

.file-size {
    font-size: 0.85rem;
    color: #444;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #d72511;
    border-radius: 5px 0 0 5px;
}

.drag-area {
    border: 2px dashed #99aaff;
    padding: 1.5rem;
    text-align: center;
    border-radius: 10px;
    color: #6666ff;
    font-weight: 500;
    background-color: #f9f9f9;
}