/* Ordinance item styles */
.ordinance-item {
    border: 1px solid #ccc; /* Border around each ordinance item */
    padding: 10px; /* Compact padding */
    margin-bottom: 15px; /* Space between each ordinance item */
    border-radius: 5px; /* Optional: rounded corners */
    background-color: #fff; /* Background color for better contrast */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow for depth */
}

.ordinance-item h3 {
    font-size: 18px; /* Adjust title size for compactness */
    margin: 0 0 10px 0; /* Compact spacing between title and description */
    color: #333; /* Darker color for readability */
}

.ordinance-item p {
    font-size: 14px; /* Smaller font size for the description */
    margin: 0 0 10px 0; /* Compact spacing between description and button */
    color: #555; /* Slightly lighter color for description */
}

.view-ordinance-btn {
    display: inline-block; /* Make the button inline-block */
    padding: 5px 10px; /* Compact padding */
    font-size: 14px; /* Smaller font size */
    color: #fff; /* Button text color */
    background-color: #007bff; /* Button background color */
    border-radius: 3px; /* Slightly rounded corners */
    text-decoration: none; /* Remove underline from the link */
}

.view-ordinance-btn:hover {
    background-color: #0056b3; /* Darker color on hover */
}
