@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
body {
    font-family: "Montserrat", sans-serif;
    background-color: #393939;
    margin:0 auto;
    text-align: center;
    color: #ffffff;
}

#doboz {
    background: #75757571;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
}

.custom-file-upload {
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s ease;
    min-width: 130px;
    min-height: 40px;
    display: block;
    padding-top: 10px;
}

.custom-file-upload:hover {
    background-color: #1976D2;
}

#fileName {
    display: block;
    margin-top: 10px;
    color: #f2f2f2;
    font-size: 0.9em;
}


input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s ease;
    min-width: 130px;
    min-height: 50px;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

#result {
    margin-top: 20px;
    font-size: 0.95em;
    color: #ffffff;
}

#result a {
    color: #2196F3;
    text-decoration: none;
}

#result a:hover {
    text-decoration: underline;
}

#progressContainer {
    border-radius: 8px;
    padding: 10px;
}

#progressBar {
    appearance: none;
    border-radius: 5px;
}

#fileList {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: row;
}

#fileList li {
    margin: 5px;
}

a {
    color: #2196F3;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}


#privacyPopup {
    position: fixed;
    bottom: 20px;
    left: 200px;
    right: 200px;
    background: rgb(62, 62, 62);
    border: 1px solid #ccc; 
    padding: 15px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.2); 
    z-index: 9999; 
    display: none; 
    border-radius: 10px;
    color: white;
}

@media (max-width: 600px) {
    #privacyPopup {
        left: 20px;
        right: 20px;
        font-size: 14px;
        padding: 12px;
    }
}
