/* Dark mode background */
.dialog {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 100%;
    max-width: 800px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
}

/* Dialog content */
.dialog-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #222; /* Dark background */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white; 
   border: 1px solid white;
}

/* Close icon */
.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Inputs */
.input-container {
    margin-bottom: 10px;
}

input[type="text"],
input[type="file"] {
    width: 90%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: black;
    color: white;
  margin-bottom: 20px;
}

/* Button */
#addVoiceButton {
    background-color: #007bff; /* Blue button */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 90%;
  margin-bottom: 20px;
}

#addVoiceButton:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
