body {
    font-family: 'Roboto Condensed', sans-serif;
    background: url('/SMD/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    color: white;
    padding: 10px 20px;
}

.navbar .logo img {
    width: 120px;
}

.navbar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.navbar nav ul li {
    margin-left: 20px;
}

.navbar nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.container {
    margin: 50px auto;
    max-width: 1200px;
    width: 90%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.form-container {
    width: 100%;
}

.form-container h1 {
    text-align: center;
    margin-bottom: 20px;
}

table.display {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.display th, table.display td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

table.display th {
    background-color: #f2f2f2;
}

.status {
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
}

.status.pending {
    color: red;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid red;
    padding: 2px 4px;
    border-radius: 3px;
    background-color: #ffcccb;
}

.status.approved {
    background-color: #28a745;
}

.status.declined {
    background-color: #dc3545;
}

.btn-action {
    margin-right: 5px;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    font-size: 14px;
}

.btn {
    background: #dd8383;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-view {
    background-color: #dd8383;
}

.btn-edit {
    background-color: #dd8383;
}

.btn-delete {
    background-color: #dd8383;
}

table.dataTable thead th, table.dataTable thead td {
    border-bottom: 1px solid #ddd;
}

table.dataTable.no-footer {
    border-bottom: 1px solid #ddd;
}

table.dataTable thead th, table.dataTable thead td {
    padding: 10px 18px;
    border-bottom: 1px solid #ddd;
}

table.dataTable tbody th, table.dataTable tbody td {
    padding: 10px 18px;
}
.btn-add-expense {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #baf736;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background 0.3s;
    }

    .pending-status {
        color: red;
        font-weight: bold;
        text-decoration: none;
        cursor: pointer;
        border: 1px solid red;
        padding: 2px 4px;
        border-radius: 3px;
        background-color: #ffcccb;
    }