/* Tips Bubble Styling */
.tips-bubble-container {
    padding: 0;
    margin: 0;
    /* No margin as requested */
    /* No side margin (align with buttons/cards), closer to bottom */
    /* Align with image grid (20px indent from parent padding) */
    position: relative;
    animation: fadeInDown 0.5s ease;
}

.tips-bubble {
    background-color: #f2f5f9;
    /* Faint blue-gray */
    color: #555;
    /* Softer dark text */
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    line-height: 1.5;
    text-align: left;
    /* Align text left as requested (implied by "left side aligned") */
    border: 1px solid #e1e4e8;
}

/* Arrow pointing down-left towards image select button */
.tips-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Arrow height */
    left: 20%;
    /* Align somewhat with the image select button */
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #f2f5f9 transparent transparent transparent;
    /* Match bg color */
}

/* Border arrow to match bubble border */
.tips-bubble::before {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 20%;
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #e1e4e8 transparent transparent transparent;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Title Decoration */
.page-title-icon {
    color: #4a90e2;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.page-title-text {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* position: relative; */
}

/* Add a decorative underline */
.page-title-container {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.page-title-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4a90e2, transparent);
    border-radius: 2px;
    opacity: 0.6;
}