/* Collection Centers section title styling */
.section-title-collection {
    font-size: 20px;
    font-weight: 600;
    color: #343a40;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 2px solid #007bff;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

/* Styling for first-row-content */
.first-row-content {
    background-color: #fff;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.first-row-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Sidebar notice styling */
.sidebar_notice {
    padding: 20px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.sidebar_notice p {
    color: #333;
    font-size: 14px;
    line-height: 1.5em;
}

.sidebar_notice strong {
    color: #007bff;
}

/* Links inside sidebar notice */
.sidebar_notice a {
    color: #007bff;
    text-decoration: none;
    margin-left: -5px;
}

.sidebar_notice a:hover {
    text-decoration: underline;
}

/* Icon styling */
.icon {
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar_notice p {
        font-size: 12px;
    }

    /* Adjust first-row-content to fit within smaller screens */
    .first-row-content {
        width: 100%;
        max-width: 100%;
    }
}