/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e6f2ff;
    line-height: 1.6;
    color: #333;
}

/* Common elements */
h1 {
    font-size: 28px;
    margin-bottom: 10px;
    border-bottom: 2px solid #4d94ff;
    padding-bottom: 10px;
    display: inline-block;
}

h2 {
    color: #0066cc;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4d94ff;
}

h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    line-height: 1.8;
}

a {
    color: #0066cc;
    text-decoration: none;
}


/* Page Specific Styles */
.page-header {
    border-bottom: 2px solid #4d94ff;
    color: #0066cc;
    text-align: center;
    padding: 25px 30px;
    margin: 20px auto;
    width: 100%;
}

.breadcrumb {
    font-size: 14px;
    color: #0066cc;
}

.breadcrumb a {
    color: #0066cc;
    text-decoration: none;
}

.budget-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.budget-intro {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.budget-intro h2 {
    color: #0066cc;
    margin-bottom: 15px;
}

.financial-year-selector {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.financial-year-selector h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.year-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.year-btn {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.year-btn.active, .year-btn:hover {
    background: #0066cc;
    color: white;
}

.documents-section {
    margin-bottom: 40px;
}

.document-category {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.document-category h2 {
    color: #0066cc;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.document-category h2 i {
    margin-right: 10px;
    color: #4d94ff;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.document-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    gap: 15px;
}

.document-icon {
    font-size: 2rem;
    color: #4d94ff;
}

.document-info {
    flex: 1;
}

.document-actions {
    display: flex;
    gap: 10px;
}

.view-btn, .download-btn {
    background-color: #4d94ff;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.view-btn:hover, .download-btn:hover {
    background-color: #0066cc;
}

.rti-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.rti-info h2 {
    color: #0066cc;
    text-align: center;
    margin-bottom: 30px;
}

.rti-info p {
    text-align: center;
}

.rti-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.rti-step {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.rti-step h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.rti-contact {
    margin-top: 30px;
    text-align: left;
}

.rti-contact p {
    margin-bottom: 5px;
    text-align:left;
    background:#f9f9f9;
    border:1px solid #ddd;
    border-radius:4px;
    padding:5px;
}
.rti-contact p:hover{
    background:#e6f2ff;
    transform:scale(1.02);
}

.financial-summary{
    background:white;
    border-radius:5px;
    padding:15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.summary-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.summary-card.income {
    background-color:#27ae60;
    color:white;
    padding:10px;
    border-radius:5px;
    margin-bottom: 10px;
}

.summary-card.income h3{
    color:white;
}

.summary-card.income:hover{
    transform:scale(1.05);
    background:#219653;
    font-weight: bold;
}

.summary-card.expenditure {
    background-color:#e74c3c;
    color:white;
    padding:10px;
    border-radius:5px;
    margin-bottom: 10px;
}

.summary-card.expenditure h3{
    color:white;
}

.summary-card.expenditure:hover{
    transform:scale(1.05);
    background:#c0392b;
    font-weight: bold;
}

.summary-card.balance {
    background-color:#4d94ff;
    color:white;
    padding:10px;
    border-radius:5px;
}

.summary-card.balance h3{
    color:white;
}

.summary-card.balance:hover{
    transform:scale(1.05);
    background:#0066cc;
    font-weight: bold;
}