/* Groq Horoscope Public Styles */
.pcgh-horoscope-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.pcgh-error-message {
    color: #dc3232;
    text-align: center;
    padding: 20px;
    border: 1px solid #dc3232;
    background-color: #ffebe8;
    border-radius: 5px;
}

.pcgh-sign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
    text-align: center;
}

.pcgh-sign-item {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pcgh-sign-item:hover {
    background: #e9e9e9;
    border-color: #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.pcgh-sign-icon {
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
}

/* Example Icons - Replace with actual images or use a font icon library */
.pcgh-icon-aries { background-image: url('https://raw.githubusercontent.com/Anandp322/zodiac-icons/master/svg/aries.svg'); }
.pcgh-icon-taurus { background-image: url('https://raw.githubusercontent.com/Anandp322/zodiac-icons/master/svg/taurus.svg'); }
.pcgh-icon-gemini { background-image: url('https://raw.githubusercontent.com/Anandp322/zodiac-icons/master/svg/gemini.svg'); }
.pcgh-icon-cancer { background-image: url('https://raw.githubusercontent.com/Anandp322/zodiac-icons/master/svg/cancer.svg'); }
.pcgh-icon-leo { background-image: url('https://raw.githubusercontent.com/Anandp322/zodiac-icons/master/svg/leo.svg'); }
.pcgh-icon-virgo { background-image: url('https://raw.githubusercontent.com/Anandp322/zodiac-icons/master/svg/virgo.svg'); }
.pcgh-icon-libra { background-image: url('https://raw.githubusercontent.com/Anandp322/zodiac-icons/master/svg/libra.svg'); }
.pcgh-icon-scorpio { background-image: url('https://raw.githubusercontent.com/Anandp322/zodiac-icons/master/svg/scorpio.svg'); }
.pcgh-icon-sagittarius { background-image: url('https://raw.githubusercontent.com/Anandp322/zodiac-icons/master/svg/sagittarius.svg'); }
.pcgh-icon-capricorn { background-image: url('https://raw.githubusercontent.com/Anandp322/zodiac-icons/master/svg/capricorn.svg'); }
.pcgh-icon-aquarius { background-image: url('https://raw.githubusercontent.com/Anandp322/zodiac-icons/master/svg/aquarius.svg'); }
.pcgh-icon-pisces { background-image: url('https://raw.githubusercontent.com/Anandp322/zodiac-icons/master/svg/pisces.svg'); }


.pcgh-sign-name {
    margin: 0;
    font-size: 1.1em;
    color: #333;
}

/* Lightbox Overlay */
.pcgh-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
}

.pcgh-lightbox-overlay.active {
    visibility: visible;
    opacity: 1;
}

.pcgh-lightbox-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.pcgh-lightbox-overlay.active .pcgh-lightbox-content {
    transform: scale(1);
}

.pcgh-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #555;
}

.pcgh-lightbox-close:hover {
    color: #000;
}

.pcgh-lightbox-content h2 {
    margin-top: 0;
    color: #333;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 20px;
}

.pcgh-lightbox-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1em;
}