.oab-atos-oficiais-container {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.oab-atos-oficiais-header {
    margin-bottom: 30px;
}

.oab-atos-oficiais-header h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.oab-search-filter-area {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
}

#oab-search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.oab-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.oab-filter-button {
    background-color: #e0e0e0;
    color: #555;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.oab-filter-button:hover {
    background-color: #d0d0d0;
}

.oab-filter-button.active {
    background-color: #007bff;
    color: #fff;
}

.oab-atos-oficiais-list {
    margin-top: 30px;
}

.oab-ato-oficial-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.oab-ato-oficial-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.oab-ato-oficial-icon {
    font-size: 30px;
    color: #007bff;
    margin-right: 20px;
}

.oab-ato-oficial-details {
    flex-grow: 1;
}

.oab-ato-oficial-details h3 {
    font-size: 18px;
    color: #333;
    margin: 0 0 5px 0;
}

.oab-ato-oficial-date {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

.oab-ato-oficial-type {
    margin: 0;
}

.oab-type-tag {
    background-color: #e9f5ff;
    color: #007bff;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 12px;
    margin-right: 5px;
}

.oab-ato-oficial-download {
    margin-left: auto;
}

.oab-download-button {
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 15px;
    transition: background-color 0.3s;
}

.oab-download-button:hover {
    background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .oab-ato-oficial-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .oab-ato-oficial-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .oab-ato-oficial-download {
        margin-top: 15px;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    .oab-download-button {
        display: block;
        width: 100%;
    }
    .oab-filter-buttons {
        justify-content: center;
    }
}
