body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("../img/nature2.webp");
    background-attachment: fixed;
    color: #333;
}

.drop-area {
            border: 2px dashed #16a085;
            border-radius: 10px;
            padding: 20px;
            cursor: pointer;
            transition: background-color 0.3s, border-color 0.3s;
        }
        .drop-area.drag-over {
            background-color: rgba(22, 160, 133, 0.2);
            border-color: #1abc9c;
        }
        .upload-message {
            margin-top: 10px;
            font-size: 14px;
            font-weight: bold;
            text-align: center;
        }
        .upload-section {
            margin: 20px auto;
            width: 100%;
            max-width: 700px;
            background: #34495e;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            color:#fff;
            display: none; /* Hidden by default */
        }

h1 {
    text-align: center;
    margin: 20px 0;
    color: #fff;
}

form {
    max-width: 700px;
    margin: auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
    color: #555;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

button {
    width: 100%;
    padding: 15px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top:0.7rem;
}

button:hover {
    background: #0056b3;
}

.info {
  margin-bottom: 20px;
  padding: 15px;
  background: #d9edf747;
  color: #fff;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
}
.move-options {
    display: flex;
    justify-content: center;

}

.move-options button {
    width: auto;
    padding: 10px 20px;
    background: #28a745;
    color: white;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh; /* Makes the container take up the full height of the viewport */
}

.show-upload-btn {
  color: #fff;
  max-width: 700px;
  text-align: center;
  margin-top: -0.8rem;
}

.move-options button:hover {
    background: #218838;
}

.hidden-options {
    display: none;
}

.hidden-options.active {
    display: block;
}
@keyframes rainbow {
    0% { color: red; }
    14% { color: orange; }
    28% { color: yellow; }
    42% { color: green; }
    57% { color: blue; }
    71% { color: indigo; }
    85% { color: violet; }
    100% { color: red; }
}

.rainbow-text {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow 3s infinite linear;
}