/* General Styling */
/* body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 50px;
    background-color: #f4f4f4;
} */

/* Heading Style */
h2 {
    color: #333;
    font-size: 24px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    border: none;
}

/* View Button */
.btn-view1 {
    background-color: #007bff;
    color: white;
}
.btn-view1:hover {
    background-color: #0056b3;
}

/* Download Button */
.btn-download {
    background-color: #28a745;
    color: white;
}
.btn-download:hover {
    background-color: #1e7e34;
}
