/* Planvigo Custom Icons CSS */

/* Professional Icon Container */
.planvigo-professional-icon {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
    margin-bottom: -120px;
}

/* Custom Clock Base */
.planvigo-clock {
    width: 150px;
    height: 150px;
    border: 18px solid var(--pv-button-text-color);
    border-radius: 50%;
    position: relative;
    background: transparent;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Clock Center Dot */
.planvigo-clock::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    background: var(--pv-button-text-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

/* Hour Hand (klein, zeigt nach rechts - 3 Uhr) */
.planvigo-clock .hour-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 57px;
    height: 15px;
    background: var(--pv-button-text-color);
    transform-origin: left center;
    transform: translate(0, -50%) rotate(-90deg);
    border-radius: 4px;
    z-index: 3;
}

/* Minute Hand (groß, zeigt nach oben - 12 Uhr) */
.planvigo-clock .minute-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 15px;
    background: var(--pv-button-text-color);
    transform-origin: left center;
    transform: translate(0, -50%) rotate(0deg);
    border-radius: 3px;
    z-index: 2;
}





/* Simple Golden Plus Symbol (obere rechte Ecke) */
.planvigo-professional-plus {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60px;
    height: 60px;
    z-index: 5;
        border-color: var(--pv-primary);
    border-width: 2px;
}

/* Plus Symbol Linien - Einfache gelbe runde Balken */
.planvigo-professional-plus::before,
.planvigo-professional-plus::after {
    content: '';
    position: absolute;
    background: #ffe48d;
    border-radius: 4px;

}

/* Vertikale Plus-Linie */
.planvigo-professional-plus::before {
    top: 50%;
    left: 50%;
    width: 13px;
    height: 50px;
    transform: translate(-50%, -50%);
}

/* Horizontale Plus-Linie */
.planvigo-professional-plus::after {
    top: 50%;
    left: 50%;
    width: 50px;
    height: 13px;
    transform: translate(-50%, -50%);
}
