@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
    font-family: Poppins, sans-serif;
    color: #efefef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;     
    background-color: #000;
    min-height: 100vh;     
}

.container {
    text-align: center;
    width: 80vw;
    max-width: 600px;
    padding: 20px;
    border: 5px solid #ccc;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#optionsContainer {
    display: none;
}

.cancelButtonClass{
  display: none;
}

.file-input {
  display: none;
}

.file-input-label {
  display: inline-block;
  background-color: #000;
  color: #efefef;           
  font-weight: bold;
  padding: 13px 25px;
  font-size: 16px;
  border-radius: 30px;
  border: 3px solid #08a8e2;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.file-input-label:hover {
  background-color: #00384d;
  border: 3px solid #efefef;
}

.file-input-label:active {
  background-color: #ffffff;  
  border: 3px solid #08a8e2;
  color: #08a8e2;
}
