:root {
    --main-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --bg-light: #f8f9fa;
}
body {
    background-color: #f0f2f5;
    color: #333;
}
.header-panel {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
}
.version-badge {
    font-size: 0.8rem;
    background: #e9ecef;
    color: #6c757d;
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-block;
}
.category-card {
    background: white;
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.category-card:hover {
    transform: translateY(-5px);
}
.category-header {
    background: var(--main-color);
    color: white;
    padding: 15px 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.category-header i {
    margin-left: 10px;
}
.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.link-item {
    border-bottom: 1px solid #f1f1f1;
}
.link-item:last-child {
    border-bottom: none;
}
.link-item a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s;
}
.link-item a:hover {
    background-color: #f8f9ff;
    color: var(--main-color);
    padding-right: 25px;
}
.link-item i {
    font-size: 0.9rem;
    margin-left: 10px;
    color: #adb5bd;
}
.contact-box {
    background: #fff;
    border-right: 5px solid var(--accent-color);
    border-radius: 10px;
    padding: 20px;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.phone-link {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}
.phone-link:hover {
    color: var(--main-color);
}
footer {
    margin-top: 60px;
    padding: 30px 0;
    color: #6c757d;
    font-size: 0.9rem;
}
.search-wrapper {
    margin-bottom: 30px;
    position: sticky;
    top: 10px;
    z-index: 1000;
}
#searchInput {
    border-radius: 25px;
    text-align: right !important;
    padding: 12px 25px;
    border: 2px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
}
#searchInput:focus {
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0,123,255,0.2);
}
.no-result {
    display: none;
    color: red;
    text-align: center;
    margin-top: 20px;
}
.header-panel {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.icon-box {
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}
.me-3 { margin-left: 1rem !important; margin-right: 0 !important; }
.ms-3 { margin-right: 1rem !important; margin-left: 0 !important; }
.phone-link {
transition: all 0.3s ease;
}
.phone-link:hover {
    color: #198754 !important; 
    transform: scale(1.05);
}
    .custom-link {
    font-size: 1.1rem;
    color: #2e2e2e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.custom-link:hover {
    color: #000;   
    text-decoration: none;
}
.bg-custom-navbar { background-color: #504a59 !important; }
        .text-custom-navlink { color: #e1e1e1 !important; }
        .text-custom-navlink:hover { color: #ffffff !important; }