
        .card-tile {
            position: relative;
            max-width: 90vw;
            border: none;
            border-radius: 30px;
            padding: 12px 18px;
            box-shadow: 0 4px 4px 2px rgba(0, 0, 0, .2);
            margin: 20px auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .card-tile:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 6px 3px rgba(0, 0, 0, .25);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #1F1A56;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .action-container {
            display: flex;
            justify-content: space-between;
        }
        
        .profile-container {
            background-color: #ffffff;
            padding: 20px;
            border: none;
            border-radius: 1rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            width: 100%;
            text-align: center;
            position: relative;
            overflow: hidden; /* important so the bg stays inside the container */
        }

        .profile-container::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url("./images/yana_bg_icon.png");
            background-repeat: no-repeat;
            background-position: center;
            /* background-size: contain;  */
            opacity: 0.3; 
            /* z-index: -1; */
        }

        #profileImage {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 4px solid #3574d5;
            position: absolute;
            top: -64px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #fff;
        }

        .profile-details {
            margin-top: 80px;
        }

        .profile-details h1 {
            font-size: 24px;
            margin: 10px 0;
        }

        .profile-details p {
            margin: 5px 0;
            color: #555555;
        }
        
        a {
            text-decoration: none !important;
        }


        @media (max-width: 600px) {
            .profile-container {
                padding: 15px;
            }
            
            .action-container {
                flex-direction: row;
            }
        }

        p,
        .fa {
            font-size: 15px;
            color: rgb(88, 88, 88);
        }

        h1 {
            font-size: 25px;
        }
        
        .toast {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .toast.show {
            opacity: 1;
        }
        
        button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            font: inherit;
        }

        .multiple-content{
            font-size: small;
        }

        .multiple-phone {
            display: flex;            /* make it flex */
            justify-content: center;  /* center horizontally */
            flex-direction: row;      /* row is default, but explicit is fine */
            gap: 10px;                /* add spacing between phone links */
        }

        .profile-content{
            display: none;
        }