/* Share Component Styles */

.share-modal .modal-content {
    max-width: 450px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    border-radius: 20px;
}

@media (max-width: 480px) {
    .share-modal .modal-content {
        padding: 1.5rem;
    }
    .share-option-card {
        padding: 1rem;
    }
}

.share-modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 1.2rem !important;
    margin-bottom: 0.5rem;
}

.share-modal-header .modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.share-option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
}

.share-option-card:hover {
    border-color: rgba(56, 189, 248, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.share-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

.share-label-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.share-label-group i {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 0.2rem;
}

.share-label-text h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.share-label-text p {
    color: #9ca3af;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.setting-input, .duration-select {
    width: 100%;
    background: #000 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding: 0.8rem 1rem !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    margin-top: 1.2rem !important;
    outline: none;
    transition: border-color 0.3s;
}

.setting-input:focus, .duration-select:focus {
    border-color: #38bdf8 !important;
}

.confirm-settings-btn {
    width: 100%;
    background: #38bdf8 !important;
    border: none !important;
    color: #000 !important;
    padding: 1rem !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1.5rem !important;
    box-shadow: 0 10px 15px -3px rgba(56, 189, 248, 0.3);
}

.confirm-settings-btn:hover {
    background: #7dd3fc !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(56, 189, 248, 0.4);
}

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