﻿.btn.btn-block {
    display: block;
}


.btn.btn-lg {
    min-width: 110px;
    padding: 10px 21px 11px;
}


.btn.btn-primary {
    color: rgb(255, 255, 255);
    background: rgb(52, 152, 219);
    border-color: rgb(52, 152, 219);
    width:150px;
}


.top-buffer, .top-buffer30 {
    margin-top: 30px;
}


@media only screen and (min-width: 950px) {
    .btn

{
    padding: 8px 21px;
}

}


.btn {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-width: 2px;
    border-style: solid;
    padding: 8px;
    transition: 0.3s;
}


.btn-block {
    display: block;
    width: 100%;
}


.btn-group-lg > .btn, .btn-lg {
    font-size: 18px;
    line-height: 1.33;
    padding: 10px 16px;
    border-radius: 6px;
}


.btn-primary {
    color: rgb(52, 152, 219);
    background-color: rgb(52, 152, 219);
    border-color: rgb(37, 140, 209);
}


.btn {
    display: inline-block;
    margin-bottom: 0px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    font-size: 14px;
    line-height: 1.42857;
    user-select: none;
    white-space: nowrap;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    padding: 6px 12px;
    border-radius: 4px;
}

    .btn.btn-primary:active, .btn.btn-primary:hover {
        color: rgb(52, 152, 219);
        border-color: rgb(52, 152, 219);
        background: 0px 0px;
    }

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ccc; /* light grey border */
    background-color: #f8f8f8; /* optional background */
    color: #333; /* icon color */
    font-size: 16px; /* adjust to your liking */
    transition: all 0.2s ease;
}

    .icon-circle:hover {
        border-color: #007bff; /* blue on hover */
        color: #007bff;
        background-color: #e6f0ff;
        cursor: pointer;
    }
