.report-error-link {
    position: absolute;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    text-decoration: none;
    color: #fff;
}

.report-error-text-short {
    display: none;
}





/* Base Bottom Sheet - Global */
.bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
    box-sizing: border-box;
    padding: 0 1.25rem;
}

.bottom-sheet.active {
    bottom: 0;
}

.bottom-sheet-content {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(1.25rem);
    backdrop-filter: blur(1.25rem);
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    box-shadow: 0 -0.9375rem 2.5rem rgba(0, 0, 0, 0.2);
    padding: 2rem;
    box-sizing: border-box;
    border: 0.0625rem solid rgba(255, 255, 255, 0.3);
    max-height: calc(80vh - 2.5rem);
    overflow-y: auto;
}

.bottom-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.bottom-sheet-header h3 {
    margin: 0;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 600;
    color: #111;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.close-btn {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #666;
    transition: background 0.2s;
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #111;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #444;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 0.0625rem solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #111;
    background: #fff;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    height: 7.5rem;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.75rem;
    background: #111;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
}

.submit-btn:hover {
    background: #000;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.status-msg {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}