.login-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
    width: 300px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background: #2c3e50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

button:hover {
    background: #34495e;
}

.error {
    color: red;
    text-align: center;
    margin-bottom: 15px;
}

.sidebar {
    width: 220px;
    background-color: #ECE4D5;
    color: #446EA2;
    position: fixed;
    height: 100%;
    padding-top: 20px;
}

.sidebar a {
    display: flex;
    align-items: center;
    color: #446EA2;
    padding: 12px 20px;
    text-decoration: none;
    gap: 10px;
}

.sidebar a:hover {
    background-color: #ECE4D5;
}

.sidebar a i {
    width: 20px;
    text-align: center;
}

.main {
    margin-left: 220px;
    padding: 20px;
}

.logout {
    position: absolute;
    bottom: 50px;
    width: 100%;
}

.img {
    display:block;
    margin:0 auto 50px auto;
    max-width:200px;
    background-color: #ECE4D5;
}

.widget-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 24px 32px;
    margin: 32px 0;
    max-width: 400px;
}
.widget-card h3 {
    margin-top: 0;
    font-size: 1.3em;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}
.widget-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}
.widget-table th, .widget-table td {
    padding: 8px 12px;
    text-align: left;
}
.widget-table th {
    background: #f4f6f8;
    color: #34495e;
    font-weight: 600;
}
.status-active {
    color: #27ae60;
    font-weight: bold;
}
.status-inactive {
    color: #c0392b;
    font-weight: bold;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 32px;
}
.styled-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1em;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.styled-table th, .styled-table td {
    padding: 12px 16px;
    text-align: left;
}
.styled-table thead th {
    background: #f4f6f8;
    color: #34495e;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
}
.styled-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}
.styled-table tbody tr:nth-child(even) {
    background: #f9fbfc;
}
.styled-table tbody tr:hover {
    background: #eaf6ff;
}
.status-active {
    color: #27ae60;
    font-weight: bold;
}
.status-inactive {
    color: #c0392b;
    font-weight: bold;
}
.action-btn {
    display: inline-block;
    background: #FFD77A;
    color: #446EA2 !important;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: background 0.2s;
    box-shadow: 0 2px 6px rgba(45,127,249,0.08);
}
.action-btn:hover {
    background: #DDA832;
    color: #446EA2 !important;
    text-decoration: none;
}
.action-btn i {
    margin-right: 6px;
}