#myInputIcon {
    display: none !important;
}

#myInput {
    border: 1px solid #4c5e76;
    height: 45px;
    font-size: 14px;
    width: 100%;
    padding-left: 25px;
}

input#myInput::placeholder {
    color: #000000;
    opacity: 1;
}

#imenik {
    border-top: 2px solid #4c5e76;
    /* Dark blue thick top border from screenshot */
    margin-top: 15px;
    padding: 0px;
}

#imenik #head {
    font-weight: bold;
    background-color: #eaedf1;
    /* Light blue/grey background from screenshot */
    color: #4c5e76;
    /* Dark blue text from screenshot */
    display: block;
}

#imenik #head .row>div {
    display: flex;
    align-items: center;
    /* Keep header items vertically centered */
}

#imenik #head .row>div[style*="text-align:right"],
#imenik #head .row>div[style*="text-align: right"] {
    justify-content: flex-end;
}

#imenik .row {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
}

#imenik .row>div {
    padding: 12px 15px;
    line-height: 1.42857143;
    vertical-align: top;
    display: block;
    /* Use block to ensure <br> and vertical alignment work correctly */
}

#imenik #content .row>div {
    color: #333;
    display: block;
    /* Force block layout for content cells */
}

#imenik .col-xs-12 {
    text-align: center;
    justify-content: center;
    font-weight: bold;
    width: 100%;
    padding: 20px !important;
}

#imenik #content .row:last-child {
    border-bottom: 0;
}

/* AJAX Loader */
#imenik-loader {
    display: none;
    text-align: center;
    padding: 30px;
}

.loader-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4c5e76;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    display: inline-block;
}
.mobile-label {
    display: none;
    font-weight: bold;
    color: #333;
    margin-bottom: 2px;
    font-size: 13px;
}

#imenik #content .row {
    padding: 10px 0;
    border-bottom: 1px dotted #ccc;
    margin-left: 0;
    margin-right: 0;
}

#imenik #content .row:last-child {
    border-bottom: none;
}

@media (max-width: 767px) {
    #imenik #head {
        display: none !important;
    }

    #imenik #content .row {
        padding: 20px 0;
        border-bottom: 1px solid #eee;
    }

    #imenik #content .row>div {
        margin-bottom: 12px;
        padding-left: 0;
        padding-right: 0;
    }

    #imenik #content .row>div:last-child {
        margin-bottom: 0;
        text-align: left !important;
    }

    #imenik .mobile-label {
        display: block;
    }
    #imenik #content .row div {
        width:100%;
        padding-top:0px;
        padding-bottom:0px;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Alphabet Filter */
#alphabet-filter {
    margin-top: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.letter-btn {
    background-color: #fff;
    border: 1px solid #4c5e76;
    color: #4c5e76;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.2s;
    min-width: 35px;
    text-align: center;
}

.letter-btn:hover {
    background-color: #eaedf1;
}

.letter-btn.active {
    background-color: #4c5e76;
    color: #fff;
}