/* Pink heart background */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.8em;
            min-height: 100vh;
            background-color: #ffe6f0; /* soft pink */
            background-image: 
                radial-gradient(#ffb6c1 10%, transparent 10%),
                radial-gradient(#ffb6c1 10%, transparent 10%);
            background-position: 0 0, 25px 25px;
            background-size: 50px 50px;
        }

        h1 {
            text-align: center;
            color: #e63946;
            margin-top: 30px;
        }

        p {
            text-align: center;
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        hr {
            margin: 15px 0;
        }

        .container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            gap: 20px;
        }

        .sidebar {
            width: 25%;
        }

        .main {
            width: 50%;
        }

        .right-col {
            width: 25%;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        select, button {
            padding: 12px;
            font-size: 16px;
            border-radius: 8px;
            border: 1px solid #ccc;
        }

        button {
            background: #e63946;
            color: white;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        button:hover {
            background: #d62839;
            transform: translateY(-2px);
        }
        
         h1, h2, h3, p {
            text-align: center;
        }

    
        h2 { font-size: 24px; color: #e63946; margin: 20px 0; }
        h3 { margin-top: 30px; color: #d62839; }
        

         a.tool-share, a.try-again, ul li a {
            color: white;
            text-decoration: none;
            display: inline-block;
            padding: 12px 18px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            margin: 5px 0;
        }

        a.tool-share {
            background-color: #25D366; /* WhatsApp green */
        }

        a.tool-share:hover {
            background-color: #1ebe57;
        }

        a.try-again {
            background-color: #e63946;
        }

        a.try-again:hover {
            background-color: #d62839;
        }

        ul {
            padding-left: 20px;
        }

        ul li a {
            background: none;
            color: #e63946;
            padding: 0;
            font-weight: normal;
        }

        ul li a:hover {
            text-decoration: underline;
        }




        @media(max-width: 900px) {
            .container {
                flex-direction: column;
            }
            .sidebar, .main, .right-col {
                width: 100%;
            }
        }
        
    /* -- sidebar recent posts -- */
    .sidebar-recent-posts {
    background: #fff0f5; /* soft pink bg for sidebar */
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar-recent-posts h3 {
    font-size: 20px;
    margin-bottom: 12px;
    text-align: center;
    color: #e63946;
}

.sidebar-recent-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-recent-posts ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    transition: transform 0.2s;
}

.sidebar-recent-posts ul li:hover {
    transform: translateX(5px);
}

.sidebar-recent-posts .thumbnail img {
    width: 12vw;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 5px;
}

.sidebar-recent-posts .title {
    font-size: 16px;
    color: #333;
    display: inline-block;
}

/* Mobile collapse */
@media (max-width: 768px) {
    .sidebar-recent-posts ul li {
        flex-direction: column;
        align-items: flex-start;
    }

    .sidebar-recent-posts .thumbnail img {
        margin-bottom: 6px;
        width:50vw;
        height: auto;
    }
}