body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
}

.my_footer {
    position: fixed;
    bottom: 0;
    margin-top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    width: 100%;
    box-sizing: border-box; /* Ensures that padding is included in the width */
    z-index: 1000; /* Ensures that the div is above other content */
  }

.container {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: 8px;
}

.title {
    text-align: center;
    color: #007bff;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-input {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.submit-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.results {
    margin-top: 30px;
    margin-bottom: 20px;
}

.alert-danger {
    background-color: #ffdddd;
    border-left: 6px solid #f44336;
    padding: 10px;
    margin-top: 20px;
}

.user-image-frame {
    width: 300px;
    height: 300px;
    border: 2px solid #333; /* Border color */
    overflow: hidden; /* Hide overflowing content */
    margin-top: 20px; /* Adjust margin as needed */
}

/* Style for the uploaded image */
.user-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and cover the frame */
}

/* In your CSS file or within a <style> tag */
table {
    width: 100%; /* Make the table occupy the full width */
}

td {
    text-align: center; /* Align <td> content to the right */
}

.drop-area {
    border: 2px dashed #ccc;
    border-radius: 5px;
    padding: 5%;
    text-align: center;
    cursor: pointer;
    width: 90%; /* Adjust the width as needed */
    height: 300px; /* Adjust the height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Style for image preview inside drop area */
.drop-area img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


