body {
    font-family:Arial, Helvetica, sans-serif;
    color: #fff;
    text-align: center;
    background-color: #EAEAEA;
}

img {
    border-radius: 3px;
    border: 1px solid #fff;
}

.navbar-nav .nav-item.active {
    background-color: #A8D08D; /* Change to your desired highlight color */
    color: #fff; /* Text color when item is active */
    border-radius: 10px;
}

#service-search {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #A8D08D; /* Light Green */
    border-radius: 5px;
    margin-bottom: 20px;
    transition: border-color 0.2s;
}

#service-search:focus {
    outline: none;
    border-color: #007bff; /* Blue when focused */
}

.service-card {
    position: relative; /* Necessary for absolute positioning of the button */
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.service-image {
    max-width: 100%;
    height: auto;
}

.service-title {
    color: #A8D08D; /* Light Green */
    font-size: 24px;
    margin-top: 10px;
}

.service-description {
    color: #333; /* Dark Gray */
}
.circular-button {
    display: inline-block;
    width: 60px; /* Set the width and height to make it circular */
    height: 60px; /* Adjust the value as needed for your design */
    border-radius: 50% !important; /* Force the circular border radius */
    color: #fff; /* Text color */
    text-align: center;
    position: absolute;
    top: 20px; /* Position from the top */
    right: 20px; /* Position from the right */
    text-decoration: none; /* Remove underlines from the link */
    line-height: 60px; /* Center the button text vertically */
}


table {
    width: 80%;
    border-collapse: collapse;
    margin: 20px auto;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}


td.description {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}