* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

button, .btn, a.btn, [class*="btn-"] {
    text-decoration: none !important;
}

button:hover, .btn:hover, a.btn:hover, [class*="btn-"]:hover {
    text-decoration: none !important;
}

button:focus, .btn:focus, a.btn:focus, [class*="btn-"]:focus,
button:active, .btn:active, a.btn:active, [class*="btn-"]:active,
button:visited, .btn:visited, a.btn:visited, [class*="btn-"]:visited {
    text-decoration: none !important;
}

:root {
    --color-bordeaux: #701f27;
    --color-bordeaux-hover: #a02d39;
    --color-darkcyan: #006d76;
    --color-darkcyan-hover: #008a95;
    --color-dark: #1D1F23;
    --color-dark-hover: #4a4d52;
    --color-delete: #c82333;
    --color-delete-hover: #dc3545;
}

.btn-dark {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    background: #1D1F23;
    color: white;
}

.btn-dark:hover {
    background: #4a4d52;
}

.btn-bordeaux {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    background: #701f27;
    color: white;
}

.btn-bordeaux:hover {
    background: #a02d39;
}

.btn-darkcyan {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    background: #006d76;
    color: white;

}

.btn-darkcyan:hover {
    background: #008a95;
}

.btn-delete {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    background: #c82333;
    color: white;
}

.btn-delete:hover {
    background: #dc3545;
}

.btn-approve {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    background: #1e7e34;
    color: white;
}

.btn-approve:hover {
    background: #28a745;
}

.btn-reject {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    background: #ac1c2a;
    color: white;
}

.btn-reject:hover {
    background: #dc3545;
}

.btn-bordeauxmain {
    background: #701f27;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-bordeauxmain:hover {
    background: #8a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(112,31,39,0.3);
}

.btn-darkcyanmain {
    background: #006d76;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-darkcyanmain:hover {
    background: #008a95;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,109,118,0.3);
}

.btn-darkmain {
    background: #1D1F23;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-darkmain:hover {
    background: #343638;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29,31,35,0.3);
}

.btn-excel {
    background: #217346;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-excel:hover {
    background: #2d9b5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33,115,70,0.3);
}

.btn-success {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40,167,69,0.3);
}

.btn-danger {
    background: #dc3545;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220,53,69,0.3);
}

.header-section {
    background: linear-gradient(135deg, #701f27 0%, #006d76 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-header-with-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-section .table-header-with-buttons > div:first-child {
    text-align: left;
}

.header-section .header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-section h1 {
    color: white;
    font-size: 32px;
    margin-bottom: 10px;
}

.header-section p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}
