
    
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    font-family: 'Poppins', sans-serif; /* Poppins font added */
    cursor: none; /* Hide the default cursor */
}

#left-panel {
    width: 20%;
    background-color: #343A40;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto; /* Add scrollbar for vertical overflow */
    height: 100%; /* Take the full height of its container */
}

#tools-heading {
    color: #f20f4b; /* Heading color */
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold; /* Higher font weight */
}

#tools-heading::before {
    content: '\2630'; /* Unicode character for the list icon */
    margin-right: 10px;
    transform: translateY(-50%);
    font-size: 25px; /* Increased font size for the icon */
}

#search-box {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #fff;
    border-color: #f20f4b;
    border-width: 3px;
}

#button-container {
    display: flex;
    flex-direction: column;
    max-height: 100%; /* Set max-height to 100% */
    box-sizing: border-box; /* Ensure padding is included in height calculation */
}
#add-button-container {
    display: flex;
    flex-direction: column;
    max-height: 100%; /* Set max-height to 100% */
    box-sizing: border-box; /* Ensure padding is included in height calculation */
}

.button {
    background-color: #f20f4b;
    color: #fff;
    border: none;
    padding: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    position: relative;
    padding-left: 55px; /* Adjusted padding for more space */
}

.button::before {
    content: '\27FF'; /* Unicode character for the tools icon */
    position: absolute;
    left: 10px; /* Adjusted left position for the icon */
    top: 48%;
    transform: translateY(-50%);
    font-size: 25px; /* Increased font size for the icon */
}

.button:hover {
    background-color: #6c757d; /* Hover color */
}

#right-panel {
    width: 80%;
    background-color: #fff;
    overflow: hidden;
    box-sizing: border-box;
}

#iframe-container {
    width: 100%;
    height: 100%;
    border: none;
}

a {
    color: #f20f4b; /* Blue link color */
    text-decoration: none;
    font-weight: bold;
    cursor: none; /* Hide the default cursor */
}

h2 {
    color: #fff;
    padding: 10px;
    border-radius: 0px;
    font-size: 11px;
    margin-left: -14px;
    box-shadow: 0 0 17px 2px rgb(229 54 111 / 87%);
    padding-left: 37px;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #f20f4b; /* Pink outer circle */
    border-radius: 50%;
    position: fixed;
    pointer-events: none; /* Ignore the cursor in click, hover events */
    z-index: 10000;
    transform: translate(-50%, -50%); /* Center the cursor */
    transition: all 0.2s ease-out; /* Smooth transition for blinking and resizing */
    background-color: #f20f4b; /* Pink dot */
    mix-blend-mode: difference; /* This helps in changing color based on background */
    
}

.cursor-expand {
    width: 30px;
    height: 30px;
    background-color: transparent; /* Change on hover over links/buttons */
}



  