/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f6;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 25px;
    background: white;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    text-align: center;
}

/* Buttons - Consistent Stylish Look */
button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease-in-out;
    margin-top: 10px;
    
    display: inline-block;
    text-decoration: none;
  text-transform: uppercase;
}

.fab-back-button {
    width: 40%;
    padding: 12px;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease-in-out;
    margin-top: 10px;
    
    display: inline-block;
    text-decoration: none;
  text-transform: uppercase;
}

.back-button {
    width: 80%;
    padding: 12px;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease-in-out;
    margin-top: 10px;
    
    display: inline-block;
    text-decoration: none;
  text-transform: uppercase;
}

button:hover, .fab-back-button:hover, .back-button:hover {
    background: linear-gradient(45deg, #3a86ff, #005fce);
    transform: scale(1.05);
}

/* Back Button Styling */
.fab-back-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-10%);
    width: auto;
    padding: 15px 25px;
    font-size: 24px;
    border-radius: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Back Button Styling */
.back-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-10%);
    width: auto;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Input Fields */
/* Input & Select Styles */
input, select {
    width: 300px;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Input Container for Three Fields in a Row */
.input-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.input-row input, .input-row select {
    flex: 1;
    min-width: 30%;
}

/* Show Password Option */
.show-password {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #007bff;
}

/* Filter Section - Full Width, Three Items Per Row */
.filter-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
}

.filter-section select {
    flex: 1;
    min-width: 30%;
}

/* Tables - More Stylish & Modern */
.contact-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: white;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 50px;
}

.contact-table th, .contact-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
}

.contact-table th {
    background-color: #1e3c72;
    color: white;
    font-weight: bold;
}

.contact-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Mailto & Call Links - Look Like Normal Text */
.contact-table td a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        width: 95%;
        padding: 20px;
    }

    .filter-section, .input-row {
        flex-direction: column;
    }

    button, .fab-back-button, .back-button {
        font-size: 14px;
        padding: 10px;
    }
}
