* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
    background-color: #007BFF;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 140px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
}

/* Table */
.table-container {
    padding: 20px;
}

table {
    width: 80%;
    border-collapse: collapse;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

th {
    background-color: #f4f4f4;
    padding: 15px 10px;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

td {
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
}

tr:last-child td {
    border-bottom: none;
}

.download-btn {
    background-color: #007BFF;
    color: white;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    text-align: center;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.modal-header img {
    width: 100px;
    height: 30px;
}

.modal-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.modal-content h2 {
    margin-bottom: 20px;
}

.modal-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Password */
.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #007BFF;
    user-select: none;
}

.helper-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    text-align: left;
}

.error-text {
    font-size: 12px;
    color: red;
    margin-bottom: 10px;
    display: none;
    text-align: left;
}

.modal-content button {
    width: 100%;
    padding: 10px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 600px) {
    th, td {
        display: block;
        text-align: left;
    }
}