/*
Theme Name: Edusmart Child
Template: edusmart
Author: Ruslan
Version: 1.0
*/

/* ===== Базові стилі дочірньої теми ===== */

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    color: #444054;
}

/* ===== Можеш додавати свої стилі нижче ===== */

.lp-profile-sidebar li a {
    color: #b95f89; /* твій бренд‑рожевий */
    font-size: 16px; /* базовий розмір тексту */
}

.lp-profile-sidebar li a::first-letter {
    font-size: 21px; /* збільшує сам символ ✦ */
    margin-right: 6px;
}

/* Сторінка психологічних тестів (опціонально) */
.psy-tests {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    text-align: center;
}

.tests-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.test-card {
    display: block;
    width: 300px;
    padding: 30px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.test-card:hover {
    transform: translateY(-5px);
}

.test-card.pink { background-color: #b95f89; }
.test-card.orange { background-color: #f4a261; }
.test-card.blue { background-color: #5f89b9; }

.psy-icon {
    font-size: 21px;
    margin-right: 6px;
    vertical-align: middle;
}

/* Робимо "Результати тестів" підпунктом */
.lp-profile-nav-tabs li.test-results > a {
    padding-left: 32px !important;
    font-size: 14px !important;
}




.copy-link-btn {
    background-color: #b95f89;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.copy-link-btn:hover {
    background-color: #a24f78;
}
