body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f9fc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.admin-panel {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 400px;
    text-align: center;
}

h1, h2 {
    color: #034769;
}

.form-container {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.custom-btn {
    background-color: #034769;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.custom-btn:hover {
    background-color: #086FA1;
}

.message {
    margin-top: 10px;
    color: green;
}

.user-list {
    margin-top: 20px;
}

.user-list ul {
    list-style: none;
    padding: 0;
}

.user-list li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}

@media (max-width: 600px) {
    html, body {
        overflow-x: hidden; /* Disable horizontal scrolling */
        width: 100%; /* Ensure full width */
    }

    .blur-layer {
        overflow-x: hidden; /* Prevent horizontal overflow */
        max-width: 100vw; /* Ensure it doesn't exceed viewport width */
    }
}