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

body{
    background:#f4f7fb;
    color:#333;
}

.container{
    width:90%;
    max-width:1200px;
    margin:30px auto;
}

h2{
    color:#0B3D91;
    margin-bottom:20px;
}

h3{
    color:#0B3D91;
    margin-bottom:15px;
}

hr{
    margin:20px 0;
    border:0;
    border-top:1px solid #ddd;
}

a{
    text-decoration:none;
}

.logout{
    background:#dc3545;
    color:#fff;
    padding:10px 20px;
    border-radius:8px;
    display:inline-block;
}

form{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
    margin-bottom:30px;
}

input,
select,
textarea{
    width:100%;
    padding:12px;
    margin:8px 0;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:15px;
}

button{
    background:#0B3D91;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:8px;
    cursor:pointer;
}

button:hover{
    background:#084298;
}

.notice-card{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
    margin-bottom:20px;
    border-left:5px solid #0B3D91;
}

.notice-card h3{
    color:#0B3D91;
}

.notice-card p{
    margin:8px 0;
}

.notice-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:15px;
}

.btn{
    padding:10px 18px;
    border-radius:8px;
    color:#fff;
    display:inline-block;
}

.view{
    background:#0d6efd;
}

.edit{
    background:#ffc107;
    color:#000;
}

.delete{
    background:#dc3545;
}

.permanent{
    background:#212529;
}

.search-box{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.search-box input{
    flex:1;
}

.success{
    background:#d1e7dd;
    color:#0f5132;
    padding:12px;
    border-radius:8px;
    margin-bottom:20px;
}

.error{
    background:#f8d7da;
    color:#842029;
    padding:12px;
    border-radius:8px;
    margin-bottom:20px;
}

/* TABLE */

table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
    border-radius:10px;
    overflow:hidden;
}

table td,
table th{
    padding:14px;
    border:1px solid #eee;
}

table th{
    background:#0B3D91;
    color:#fff;
}

table tr:nth-child(even){
    background:#f8f9fa;
}

/* STATUS */

.status{
    padding:6px 14px;
    border-radius:30px;
    color:#fff;
    font-size:13px;
    font-weight:bold;
}

.submitted{
    background:#ffc107;
    color:#000;
}

.eligible{
    background:#198754;
}

.selected{
    background:#0d6efd;
}

.rejected{
    background:#dc3545;
}

/* DASHBOARD BUTTONS */

.action-btn{
    display:inline-block;
    margin-right:10px;
    margin-top:20px;
    padding:12px 20px;
    border-radius:8px;
    color:#fff;
    background:#0B3D91;
}

.action-btn:hover{
    background:#084298;
}

@media(max-width:768px){

.container{
    width:95%;
}

.search-box{
    flex-direction:column;
}

.notice-actions{
    flex-direction:column;
}

.action-btn{
    width:100%;
    text-align:center;
    margin-bottom:10px;
}

table{
    display:block;
    overflow-x:auto;
}

}