/* General Page Styling */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Urbanist', sans-serif;
    background-image: url('https://i.imgur.com/pEYd4GR.jpeg') ;
    background-size: cover;
    margin: 0;
    padding: 20px;
    text-align: center;
    color: #333;
    overflow-x: hidden;
}

/* Headings */
h2 {
    color: #ff9800;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    -webkit-text-stroke: 2px #1c3d6e;
    font-family: 'Urbanist', sans-serif;
}

h2:hover {
    color: #ff9800;
    transition: 0.3s;
}

/* Buttons */
button {
    padding: 14px 20px;
    margin: 10px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Urbanist', sans-serif;
}

button:hover {
    transform: scale(1.07);
    opacity: 0.9;
}

/* Primary Buttons */
.btn-primary {
    background-color: #ff9800;
    color: white;
}

.btn-primary:hover {
    background-color: #e68900;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-move {
    background-color: #28a745;
    color: white;
}

/* Logout Button */
.logout {
    background-color: #ff5722;
    color: white;
    padding: 14px 24px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
}

/* Tables */
table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    animation: fadeIn 0.6s ease-in-out;
    font-family: 'Urbanist', sans-serif;
}

/* Table Header */
th {
    background-color: #1c3d6e;
    color: white;
    padding: 15px;
    font-size: 1.2rem;
    font-family: 'Urbanist', sans-serif;
}

/* Table Rows */
tr {
    transition: 0.3s;
}

tr:hover {
    background-color: rgba(28, 61, 110, 0.1);
}

/* Table Cells */
td {
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 1.1rem;
    font-family: 'Urbanist', sans-serif;
}

/* Form Styling */
form {
    background: white;
    padding: 30px;
    width: 30%;
    margin: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    animation: slideIn 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Urbanist', sans-serif;
}

input, select {
    width: 90%;
    padding: 14px;
    margin: 12px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
}

/* Phone Number Formatting */
input[type="tel"] {
    width: 90%;
    padding: 14px;
    margin: 12px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
}

input[type="tel"]::placeholder {
    color: #aaa;
}

input[type="submit"] {
    background-color: #ff9800;
    color: white;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    text-transform: uppercase;
}

input[type="submit"]:hover {
    background-color: #e68900;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    form {
        width: 90%;
    }
    table {
        width: 100%;
    }
    button {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
