/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container to center form */
.container {
    width: 100%;
    max-width: 500px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Title styling */
h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Form group styling for labels and inputs */
.form-group {
    margin-bottom: 15px;
}

/* Label styling */
label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Input field styling */
input[type="text"], input[type="email"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Drag-and-drop area styling */
.drop-area {
    width: 100%;
    max-width: 400px; /* Adjust width as needed */
    margin: 20px auto;
    padding: 20px;
    border: 2px dotted #4CAF50; /* Dotted border with a green color */
    border-radius: 10px; /* Rounded corners */
    background-color: #f9f9f9; /* Light background color */
    text-align: center;
    color: black; /* Text color */
    font-family: Arial, sans-serif;
    cursor: pointer; /* Change cursor to pointer for interaction */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.drop-area:hover {
    background-color: #f0f0f0;
}

/* File name display */
.file-name {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

/* Button styling */
button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #45a049;
}

/* Style for the custom file upload label */
.custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

/* Hover effect for the button */
.custom-file-upload:hover {
    background-color: #45a049;
}

/* File name display */
.file-name-display {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    text-align: center;
}

  /* Basic modal styling */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  }

  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }