﻿.custom-tooltip-alert {
    position: relative;
    display: inline-block;
    margin-left: 4px;
}

    .custom-tooltip-alert .custom-tooltip-content {
        display: none;
        position: absolute;
        /* Position directly below the info icon */
        top: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%);
        /* Fixed tooltip size */
        width: 420px;
        max-width: 420px;
        /* Prevent tooltip from changing the form layout */
        box-sizing: border-box;
        /* Screenshot 1 appearance */
        background-color: #fffaf0;
        border: 1px solid #d8b36a;
        border-radius: 7px;
        padding: 8px 10px;
        color: #111;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        z-index: 9999;
        /* Small shadow similar to screenshot */
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

        /* Tooltip arrow */
        .custom-tooltip-alert .custom-tooltip-content::before {
            content: "";
            position: absolute;
            top: -7px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            border-bottom: 7px solid #d8b36a;
        }

        /* Inner part of arrow */
        .custom-tooltip-alert .custom-tooltip-content::after {
            content: "";
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 6px solid #fffaf0;
        }
