.software-search-container {
    background: #fff;
    border-radius: 18px;
    padding: 5px 24px;
    max-width: 1400px;
    margin: 30px auto;
}

.software-search-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2746;
    margin-bottom: 30px;
}

.search-section {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.search-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.search-content {
    flex: 1;
    min-width: 0;
}

.search-bar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--tlm-radius-lg, 0.75rem);
    padding: 18px;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.search-row input[type="text"] {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 1rem;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid #e5e7eb;
    color: #222;
    background: #ffffff;
    text-transform: none;
    font-family: 'Roboto', sans-serif;
}

.search-row button[type="submit"] {
    width: 100%;
    height: 48px;
    font-size: 0.8rem;
    border-radius: 8px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #074d78 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}

.search-row button[type="submit"]:hover {
    background: #053a5a !important;
}

.software-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.software-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--tlm-radius-md, 0.5rem);
    padding: 22px 28px;
    gap: 24px;
    transition: box-shadow 0.25s ease;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.software-item:hover {
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.09);
}

.software-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--tlm-radius-md-px, 8px);
    background: radial-gradient(circle at top left, #eff6ff, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #074d78;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 12px;
    overflow: hidden;
    text-align: center;
}

.software-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.software-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #074d78;
}

.software-item:hover .software-title {
    color: #074d78;
    text-decoration: none;
}

.software-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px 16px;
}

.software-meta.stacked {
    grid-template-columns: 1fr;
    gap: 6px;
}

.software-meta-item {
    font-size: 0.95rem;
    color: #1f2937;
}

.software-meta-label {
    font-weight: 600;
    color: #0f172a;
    margin-right: 4px;
}

.software-meta-value {
    color: #074d78;
}

.software-desc {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.6;
}

.btn-blue {
    background: #074d78;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}
.btn-blue:hover,
.btn-blue:focus {
    background: #053a5a;
    color: #fff;
}

.btn-outline {
    background: #fff;
    color: #074d78;
    border: 2px solid #074d78;
    border-radius: 8px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}
.clear-filters-btn {
    width: 100%;
    padding: 8px;
    background: #fff;
    color: #074d78;
    border: 1.5px solid #074d78;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

    .clear-filters-btn:hover {
        background: #074d78;
        color: #fff;
    }
.filters {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}
.active-filters {
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 15px;
}
.software-search-container .filters select {
    appearance: auto !important;
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;
    background: #f8fafc !important;
    border: 1.5px solid #dbeafe !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    color: #222 !important;
    width: 100% !important;
    padding: 10px 18px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    box-shadow: none !important;
    font-weight: 400 !important;
    transition: border 0.2s;
}
.software-search-container .filters select:focus {
    border-color: #074d78 !important;
    outline: none !important;
}

/*.software-search-container .search-bar button {
    background: #074d78 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0 24px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    height: 48px !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
}
.software-search-container .search-bar button:hover {
    background: #053a5a !important;
}*/
.search-row input[type="text"]:focus {
    outline: none;
    border-color: #074d78;
    box-shadow: 0 0 0 1px #074d78;
}
.software-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.software-item-link .software-item:hover {
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.09);
}

.search-result-count {
    margin: 0 0 18px 0;
    font-size: 0.9rem;
    color: #1a2746;
    font-weight: 500;
}

.search-result-count b {
    color: #074d78;
}