﻿.search-actions-icon {
    display: flex;
    gap: 15px;
    margin-left: 15px;
}

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.btn-search {
    background-color: #00c194;
    color: #fff;
}

    .btn-search:hover {
        background-color: #00a87d;
        transform: scale(1.05);
    }

.btn-reset {
    background-color: #eeeeee;
    color: #444;
}

    .btn-reset:hover {
        background-color: #dddddd;
        transform: scale(1.05);
    }
