.dlm-category-section,
:target {
    scroll-margin-top: 100px;
}
.category-nav ul {
    display: flex;
    flex-wrap: wrap;
    margin:0 auto;
    justify-content: center;
    gap:10px 2px;
    font-size:20px;
}
.category-nav li {
    margin:5px 0;
    display: inline-block;
    border:1px solid #000;
}
.category-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding:20px
}
.category-nav li:hover {
    background-color: #007bff;
}
.category-nav li:hover a{
    color:#fff;
}


.dlm-category-section {
    display: block;
    overflow: hidden;
    margin-bottom: 40px;
    padding:30px;
}
.dlm-category-section:nth-last-of-type(odd){
    background-color: #f5f5f5;
}
.dlm-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start; /* Or space-between, space-around, space-evenly if desired */

}

.dlm-download {
    flex: 1 0 auto; /* Allow items to grow, don't shrink initially, auto basis */
    max-width: calc(25% - 10px); /* Ensure a minimum width */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    box-sizing: border-box;
    position:relative;
}

form.post-password-form{
    margin:20px auto;
    width:90%;
    max-width: 400px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    padding:25px;
    background-color: #f5f5f5;
}
.dlm-holder{
    padding: 15px 15px 50px;
}
.dlm-download-thumbnail {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
}
.dlm-download h3 {
    font-size: 1.2em;
    margin: 10px 0;
    color: #333;
}
.dlm-download p {
    margin: 5px 0;
    color: #666;
}
.dlm-download a.dlm-button {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #ccc;
    transition: background 0.2s, color 0.2s;
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -56px;

}
.dlm-download a.dlm-button:hover {
    background: #e0e0e0;
    color: #000;
}
.dlm-download .no-thumbnail {
    color: #999;
    font-style: italic;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .dlm-download {
        flex: 0 0 calc(100% - 20px); /* 1 column on mobile */
    }
}