/**
 * Intonesia Locations Sidebar Widget Styles
 *
 * Minimal styling that follows the inone theme design.
 *
 * @package Intonesia_Locations_Sidebar
 */

.intonesia-locations-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.intonesia-locations-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.intonesia-locations-item:last-child {
    border-bottom: none;
}

.intonesia-locations-name {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.intonesia-locations-name:hover {
    color: #0073aa;
    text-decoration: underline;
}

.intonesia-locations-loc {
    font-size: 0.8125rem;
    color: #888;
    line-height: 1.3;
}