.document-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #0A5C45;
}
.pdf-preview-container {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 380px;
    background: #f8fafc;
    position: relative;
}
.pdf-preview-container iframe {
    border: none;
    width: 100%;
    height: 100%;
}
.doc-badge {
    background-color: #e8f0fe;
    color: #1a73e8;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.doc-title {
    font-size: 18px;
    font-weight: 700;
    color: #0A5C45;
    margin-bottom: 12px;
    line-height: 1.4;
}
.doc-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.view-doc-btn {
    background-color: #e8f0fe;
    color: #1a73e8;
    border: none;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 6px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}
.view-doc-btn:hover {
    background-color: #0A5C45;
    color: #ffffff!important;
}
@media (max-width: 767px) {
    .pdf-preview-container {
        height: 240px;
    }
}
