* {
    box-sizing: border-box;
}

#breadcrumbs {
    background: #f8f9fa;
    padding: 30px 0;
    margin-bottom: 40px;
}

#breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0 0 10px 0;
}

#breadcrumbs ol li {
    color: #666;
    font-size: 14px;
}

#breadcrumbs ol li::after {
    content: '/';
    margin-left: 10px;
    color: #999;
}

#breadcrumbs ol li:last-child::after {
    content: '';
}

#breadcrumbs ol li a {
    color: #e96b56;
    text-decoration: none;
}

#breadcrumbs ol li a:hover {
    text-decoration: underline;
}

#breadcrumbs h2 {
    font-size: 2rem;
    color: #333;
    margin: 0;
}

#clients {
    padding: 60px 0;
}

#clients .section-title {
    text-align: center;
    margin-bottom: 40px;
}

#clients .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

#myInput {
    background-image: url('/css/searchicon.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    width: 100%;
    font-size: 16px;
    padding: 12px 20px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 30px;
    transition: all 0.3s;
}

#myInput:focus {
    outline: none;
    border-color: #e96b56;
    box-shadow: 0 0 0 3px rgba(233, 107, 86, 0.1);
}

.downloads-table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #ddd;
    font-size: 18px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.downloads-table th,
.downloads-table td {
    text-align: left;
    padding: 12px;
    border: 1px solid #ddd;
}

.downloads-table thead tr {
    background-color: #e96b56;
    color: white;
}

.downloads-table thead th {
    font-weight: 700;
    font-size: 18px;
}

.downloads-table tbody tr {
    border-bottom: 1px solid #ddd;
    transition: all 0.2s;
}

.downloads-table tbody tr:hover {
    background-color: #f8f9fa;
}

.downloads-table tbody th {
    background-color: #f1f1f1;
    font-weight: 600;
}

.new-badge {
    vertical-align: middle;
    margin-right: 5px;
    width: auto;
    height: 20px;
}

.downloads-table a {
    color: #e96b56;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.downloads-table a:hover {
    color: #d25e4a;
    text-decoration: underline;
}

.downloads-table a i {
    font-size: 20px;
}

@media (max-width: 991px) {
    .downloads-table {
        font-size: 16px;
    }

    .downloads-table th,
    .downloads-table td {
        padding: 10px 8px;
    }

    .downloads-table thead th {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    #breadcrumbs {
        padding: 25px 0;
    }

    #breadcrumbs h2 {
        font-size: 1.5rem;
    }

    #clients {
        padding: 40px 0;
    }

    #clients .section-title h2 {
        font-size: 28px;
    }

    #myInput {
        padding: 10px 15px 10px 35px;
        font-size: 14px;
    }

    .downloads-table {
        font-size: 14px;
        display: block;
        overflow-x: auto;
    }

    .downloads-table th,
    .downloads-table td {
        padding: 8px 6px;
    }

    .downloads-table thead th {
        font-size: 15px;
    }

    .downloads-table a {
        font-size: 13px;
    }

    .downloads-table a i {
        font-size: 18px;
    }

    .new-badge {
        height: 18px;
    }
}

@media (max-width: 480px) {
    #breadcrumbs {
        padding: 20px 0;
    }

    #breadcrumbs h2 {
        font-size: 1.3rem;
    }

    #clients .section-title h2 {
        font-size: 24px;
    }

    #myInput {
        padding: 8px 12px 8px 30px;
        font-size: 13px;
    }

    .downloads-table {
        font-size: 12px;
    }

    .downloads-table th,
    .downloads-table td {
        padding: 6px 4px;
    }

    .downloads-table thead th {
        font-size: 14px;
    }

    .downloads-table a {
        font-size: 12px;
    }

    .downloads-table a i {
        font-size: 16px;
    }

    .new-badge {
        height: 16px;
    }
}
