/* Common Components Styling */

/* View Button Style */
.btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #0c0c0c;
    background-color: #efefef;
    padding: 8px 48px;
    min-width: 240px;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view:hover {
    background-color: #e5e5e5;
    color: #0c0c0c;
}

/* Dark version for sections with dark background */
.bg-dark .btn-view {
    background-color: #ffffff;
}

/* Filter button variant (for smaller buttons in filters) */
.btn-view.btn-filter {
    min-width: auto;
    padding: 8px 24px;
} 