.share-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa, #eef2ff);
}

/* CARD */
.share-card {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* HEADER */
.share-header h4 {
    font-weight: 700;
    margin-top: 10px;
}

.share-icon {
    width: 55px;
    height: 55px;
    background: #e7f1ff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 20px;
}

/* INPUT */
.share-box {
    margin-top: 25px;
}

.share-box label {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 6px;
    display: block;
}

.share-input {
    border-radius: 10px !important;
    font-size: 13px;
}

/* COPY BTN */
.btn-copy {
    border-radius: 10px;
    border: 1px solid #dee2e6;
    background: #fff;
}

.btn-copy:hover {
    background: #f1f3f5;
}

.btn-copy.copied {
    background: #d1e7dd;
    color: #198754;
}

/* SOCIAL */
.share-social {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 25px;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
    border: 1px solid #eee;
    color: #333;
}

.share-btn img {
    width: 22px;
    margin-bottom: 6px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* COLORS */
.whatsapp { background: #f6fffa; }
.telegram { background: #f0f7ff; }
.twitter { background: #f8f9fa; }

/* BACK BTN */
.back-btn {
    border-radius: 10px;
}
.dashboard-row{
    align-items:unset !important;
}