body{
margin:0;
font-family:Arial, sans-serif;
background:#f5f5f5;
color:#333;
}

.header{
background:#0a5c36;
color:white;
padding:30px 20px;
text-align:center;
box-shadow:0 2px 10px rgba(0,0,0,0.15);
}

.header h1{
margin:0;
font-size:28px;
}

.header p{
margin-top:10px;
opacity:0.95;
}

.submit-btn{
background:#0a5c36;
color:white;
border:none;
padding:12px 20px;
border-radius:8px;
font-weight:bold;
cursor:pointer;
width:100%;
}

.submit-btn:hover{
opacity:0.9;
}

.provinces{
padding:20px;
}

.province{
background:white;
padding:15px;
margin-bottom:10px;
border-radius:10px;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
font-weight:bold;
transition:0.2s;
}

.province:hover{
transform:translateY(-2px);
}

.stories{
padding:20px;
}

.story-card{
background:white;
padding:18px;
margin-bottom:15px;
border-radius:10px;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.story-card h3{
margin-top:0;
}

.story-card a{
text-decoration:none;
color:#0a5c36;
font-weight:bold;
}

.story-card a:hover{
text-decoration:underline;
}

.form-container{
padding:20px;
}

input,
select,
textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:8px;
box-sizing:border-box;
font-size:16px;
}

textarea{
resize:vertical;
}

hr{
border:none;
border-top:1px solid #eee;
margin:15px 0;
}

.footer{
background:white;
text-align:center;
padding:20px;
margin-top:20px;
border-top:1px solid #ddd;
}

.footer a{
text-decoration:none;
color:#0a5c36;
margin:0 10px;
font-weight:bold;
}

.provinces{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    padding:20px;
}

.province{
    margin-bottom:0;
    text-align:center;
}

.provinces a{
    text-decoration:none;
    color:inherit;
}

.navbar{
    background:white;
    display:flex;
    justify-content:space-around;
    padding:12px;
    box-shadow:0 2px 5px rgba(0,0,0,0.08);

    position:sticky;
    top:0;
    z-index:1000;
}

.navbar a{
    text-decoration:none;
    color:#0a5c36;
    font-weight:bold;
    flex:1;
    text-align:center;
}

body{
    margin:0;
    padding-top:60px;
    font-family:Arial, sans-serif;
    background:#f5f5f5;
    color:#333;
}

.dashboard-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    padding:20px;
}

.stat-card{
    background:white;
    padding:20px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.stat-card h3{
    margin:0;
    font-size:14px;
    color:#666;
}

.stat-card p{
    margin:10px 0 0 0;
    font-size:24px;
    font-weight:bold;
    color:#0a5c36;
}