/* ✅ Remove Number Input Spinner */
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield; 
}

/* ✅ Fullscreen Transparent Background */


/* ✅ Table Wrapper with Long Background */
.table-container {
    width: 90%;
    max-width: 1200px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
}


.table {
    width: 100%;
    border-radius: 8px;
    border-collapse: collapse;
    background-color: transparent !important;
    border: none !important;
    white-space: normal;
}

.table th, .table td {
    height: 60px;
    width: 110px;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background-color: rgba(128, 128, 128, 0.3) !important; /* Slightly Darker Grey */
    color: white !important;
    min-width: 100px;
    font-size: 16px;
    font-weight: bold;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}


/* ✅ Ensures Table is Responsive */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    display: block;
    max-width: 100%;
}

/* ✅ Responsive Design for Mobile */
@media (max-width: 768px) {
    .table th, .table td {
        min-width: 90px;
        padding: 8px;
    }
}

/* ✅ Force table to scroll when screen is too small */
@media (max-width: 480px) {
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
    .table th, .table td {
        min-width: 80px;
        padding: 6px;
    }
}

.contact-container2 {
    margin-bottom: 35px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 10px;
    align-items: stretch;
}