/* ===========================================
   Share Sheet Styles
   =========================================== */
.share-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 10px 0;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 100%;
}

.share-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-20);
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    transition: transform 0.2s;
}

.share-icon-wrapper:active {
    transform: scale(0.95);
}

.share-label {
    font-size: var(--font-12);
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin-top: 6px;
}

/* Share Link Input Section */
.share-link-section {
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
}

.share-section-title {
    font-size: var(--font-14);
    color: #888;
    margin-bottom: 12px;
    margin-left: 4px;
    font-weight: var(--font-weight-medium);
}

.share-input-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--bg-secondary);
    border-radius: 5px 5px 0 0;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-color);
    transition: border-color 0.2s;
}

.share-input-wrapper:focus-within {
    border-color: var(--primary-color);
}

.input-icon-left {
    color: var(--text-muted);
    font-size: var(--font-16);
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.share-input-wrapper input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: var(--font-14);
    color: var(--text-muted);
    width: 100%;
    min-width: 0;
}

.input-icon-right {
    color: #666;
    font-size: var(--font-18);
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.input-icon-right:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.input-icon-right:active {
    background-color: rgba(0, 0, 0, 0.1);
}