﻿body {
}

.container h2 {
    /*background-image: url('images/c5.jpg');*/ /* Change to your image path */
    /*background-size: cover;*/ /* Cover the entire area */
    /*background-position: center;*/ /* Center the background image */
    margin: 0;
    text-decoration: underline;
    text-align: center;
    background-color: green; /* Change to your desired color */
    /*background: linear-gradient(to bottom, #ccff33 0%, #003300 100%);*/
    padding: 10px; /* Add padding for better spacing */
    /*border-radius: 5px;*/ /* Optional: round the corners */
    color: white; /* Change text color if needed */
}

.icon {
    margin-left: auto; /* Push the icon to the far right */
    transition: transform 0.3s; /* Add transition for smooth rotation */
}
/* Collapsible button styling */
.collapsible {
    margin: 0;
    display: flex;
    align-items: center; /* Center items vertically */
    background-color: #f5f5f5;
    color: black;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 16px;
    outline: none;
    margin-top: 10px;
    /*border: 1px solid #ccc;*/ /* Border color */
    /*border-radius: 5px;*/ /* Rounded corners */
}

    .collapsible:hover, .collapsible.active {
        color: blue;
        text-decoration: underline;
    }

/* Content area for the table */
.content {
    display: none; /* Hidden by default */
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    margin-top: 10px;
}

/* Styling for GridView */
.contact-grid {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

    .contact-grid th, .contact-grid td {
        padding: 8px;
        border: 1px solid #ddd;
    }

    .contact-grid th {
        background-color: #007bff;
        color: white;
    }
