@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,700;1,300&family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
}

body {
    background-color: #f0f0f0;
}

nav {
    background-color: #333;
    color: #fff;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin: 0 20px;
    font-weight: 800;
    font-size: 24px;
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow-x: auto;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #333;
    color: #fff;
}

tr:nth-child(even) {
    background-color: #f5f5f5;
}

@media (max-width: 768px) {
    table {
        font-size: 14px;
    }

    th, td {
        padding: 10px;
    }

    td:last-child {
        font-size: 16px;
    }
}

.container {
    max-width: 90%;
    margin: 30px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

h1, h2, h3 {
    margin: 20px 0;
    color: #333;
    text-align: center;
}

p {
    text-align: center;
}

.btn {
    padding: 10px 20px;
    background: #ff6b6b;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    margin: 30px 0;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: #ff4949;
}

.btn-sm {
    padding: 8px 15px;
    background: #ff6b6b;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.btn-sm:hover {
    background: #ff4949;
}

img {
    cursor: pointer;
    position: relative;
    bottom: 4px;
    width: 18px;
    height: 16px;
}

#alert {
    display: none;
}

form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    text-align: left;
    width: 100%;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    transition: border-color 0.3s ease-in-out;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #ff6b6b;
}