/*
 * Component Styles
 *
 * Reusable UI components: help button, contact sheet, etc.
 */

/* Help/Feedback floating button */
.help-feedback-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
}

.help-feedback-btn button {
    width: 60px;
    height: 60px;
    font-size: 10px;
    line-height: 1.2;
    font-weight: var(--font-weight-bold);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.help-feedback-btn .help-btn-close {
    font-size: 20px;
}

/* Contact sheet overlay */
.contact-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-overlay-light);
    z-index: 1060;
}

.contact-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-radius: 15px 15px 0 0;
    max-height: 80vh;
    overflow-y: auto;
}

.contact-sheet-content {
    padding: var(--spacing-md);
}

/* Contact success icon */
.contact-success-icon {
    font-size: 48px;
}

/* Cursor pointer helper */
.cursor-pointer {
    cursor: pointer;
}

/* Object fit cover helper */
.object-cover {
    object-fit: cover;
}

/* Spacer element */
.spacer-40 {
    height: 40px;
}
