.reports-filter-bar {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.reports-filter-bar button {
    position: absolute;
    left: 10px;
    top: 12px;
}
.report-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}
.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--main-color);
}
.report-img {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.report-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.report-card:hover .report-img img {
    transform: scale(1.05);
}
.report-img .file-icon {
    font-size: 60px;
    color: #ccc;
}
.report-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.report-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.5;
}
.report-price {
    margin-top: auto;
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 20px;
}
.report-actions {
    display: flex;
    gap: 10px;
}
.btn-preview {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    display: inline-block;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    transition: all 0.3s ease;
}
.btn-preview:hover {
    background-color: var(--main-color);
    color: #fff;
}
.btn-download {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    color: #333;
    transition: all 0.3s ease;
}
.btn-download:hover {
    background-color: var(--main-color);
    color: #fff;
}
