/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme
Author: Muffin group
Author URI: https://muffingroup.com
Description: Child Theme for Betheme
Template: betheme
Version: 2.0.2
*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');
.ui-autocomplete {
  background: white;
  border: 1px solid #ddd;
  max-height: 200px;
  overflow-y: auto;
}
.ui-menu-item {
  padding: 8px;
  border-bottom: 1px solid #eee;
}
.ui-menu-item:hover {
  background: #f5f5f5;
}
.custom-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.custom-button:hover {
    background-color: #005a87;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.custom-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Different button styles */
.custom-button.btn-primary {
    background-color: #28a745;
}

.custom-button.btn-primary:hover {
    background-color: #218838;
}

.custom-button.btn-secondary {
    background-color: #6c757d;
}

.custom-button.btn-secondary:hover {
    background-color: #5a6268;
}

.custom-button.btn-danger {
    background-color: #dc3545;
}

.custom-button.btn-danger:hover {
    background-color: #c82333;
}

.custom-button.btn-outline {
    background-color: transparent;
    border: 2px solid #0073aa;
    color: #0073aa;
}

.custom-button.btn-outline:hover {
    background-color: #0073aa;
    color: white;
}