/* ✅ Viewport scaling (add this in your HTML <head>) */
@viewport {
  width: device-width;
  zoom: 1;
}

/* ✅ Apply to whole body */
body {
    margin: 0;
    padding-top: 5%;
    background-color: #3a87ca;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* ✅ Styling the outer div container */
.container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 90%;
    margin: auto;
}

/* ✅ Style the form inside that div */
.container form {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 8px;
}

/* ✅ Style inputs inside the form */
.container form input[type="text"],
.container form input[type="password"],
.container form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #d69090;
    font-size: 1rem;
}

/* ✅ Style submit button */
.container form input[type="submit"] {
    background-color: #2272d4;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.container form input[type="submit"]:hover {
    background-color: #0056b3;
}

/* ✅ Responsive tweaks for small screens */
@media (max-width: 768px) {
    body {
        padding-top: 20px;
        display: block;
    }

    .container {
        padding: 20px;
        box-shadow: none;
    }

    .container form {
        padding: 15px;
    }

    .container form input[type="submit"] {
        padding: 14px;
        font-size: 1.1rem;
    }
    .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.table {
  min-width: 600px; /* or whatever width fits your full table */
  border-collapse: collapse;
}
}
