.cdm-frontend-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #f5f5f5; /* subtle background behind the cards */
}

.cdm-year-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease-in-out;
}

.cdm-year-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.cdm-year-title {
    margin: 0;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 10px;
}

.cdm-doc-table {
    width: 100%;
    border-collapse: collapse;
}

.cdm-doc-table th,
.cdm-doc-table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
    font-size: 0.95em;
}

.cdm-doc-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #555;
}

.cdm-doc-table td a {
    text-decoration: none;
}

.cdm-button {
    color: #1d59ad !important;
    padding: 7px 12px;
    border-radius: 3px;
    border: solid 1px #1d59ad;
}

.cdm-button:hover {
    background-color: #17488a;
    box-shadow: 2px 2px 4px #00000057;
    color: #fff !important;
}

.cdm-doc-actions {
    text-align: right;
}

.cdm-doc-actions > .cdm-button:first-of-type {
    margin-right: 12px;
}

.cdm-button i {
    margin-right: 5px;
}

.cdm-doc-title {
    text-transform: capitalize;
}

@media screen and (max-width: 600px) {
    
    .cdm-doc-table tr > th:nth-of-type(3),
    .cdm-doc-table tr > td:nth-of-type(3) {
        display: none;
    }

}