/*
	Theme Name:   Savoy Child
	Theme URI:    http://themeforest.net/item/savoy-minimalist-ajax-woocommerce-theme/12537825
	Description:  Savoy child theme
	Author:       NordicMade
	Author URI:   http://www.nordicmade.com
	Template:     savoy
	Version:      1.0
*/


/* Child theme CSS
--------------------------------------------------------------- */

/* Container for pagination */
.alphabet-pagination-container {
    text-align: center;
    margin-bottom: 20px;
}

/* Each row container */
.alphabet-row {
    margin-bottom: 10px;
}

/* Unordered list styling */
.alphabet-pagination {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List item styling */
.alphabet-pagination li {
    display: inline;
    margin: 0 5px;
}

/* Link styling */
.alphabet-pagination li a {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

/* Hover effect for links */
.alphabet-pagination li a:hover {
    background-color: #0073e6;
    color: #fff;
}

/* Current letter styling (optional, if you want to highlight the selected letter) */
.alphabet-pagination li .current-letter {
    background-color: #0073e6;
    color: #fff;
    cursor: default;
}