* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    background: url('../images/logo.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    height: 100%;
    background: #14194A !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    background: #ffffff;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.login-box h2 {
    margin: 0;
    color: #14194A;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.input-group input:focus {
    outline: none;
    border-color: #14194A;
}

button {
    width: 100%;
    padding: 14px;
    background: #14194A;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0f133d;
}

.error {
    background: #ffdddd;
    color: #a70000;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}

.footer {
    margin-top: 25px;
    font-size: 12px;
    text-align: center;
    color: #999;
}

/* Responsive */
@media (max-width: 480px) {
    .login-box {
        padding: 25px;
    }
}
/* ===== CONTENT HEADER ===== */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.content-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #14194A;
}

/* ===== CARD BOX ===== */
.card-box {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ===== TABLE ===== */
.styled-table {
    width: 100%;
    border-collapse: collapse;
}

.styled-table thead {
    background: #f4f6fb;
}

.styled-table th,
.styled-table td {
    padding: 12px 14px;
    font-size: 14px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #eee;
}

.styled-table tbody tr:hover {
    background: #fafbff;
}

/* ===== ACTION BUTTONS ===== */
.actions {
    text-align: center;
}

.btn-icon {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 8px;
    margin: 0 3px;
    font-size: 14px;
    text-decoration: none;
}

.btn-icon.edit {
    background: #eef1ff;
    color: #14194A;
}

.btn-icon.delete {
    background: #ffecec;
    color: #d9534f;
}

.btn-icon:hover {
    opacity: 0.85;
}

