/* ======================================
   ASTRO STRIP
====================================== */

.ff-astro-strip {
    gap: 10px 18px;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(23, 48, 66, 0.08);
    font-size: 0.85rem;
    color: #6c757d;
}

.ff-astro-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex: 0 0 auto;
}

.ff-astro-label {
    font-weight: 600;
    color: #495057;
}

.ff-astro-phase {
    position: relative;
    margin-left: auto;
    font-weight: 600;
    color: #343a40;
}

/* ======================================
   MOON IMAGE / HOVER
====================================== */

.ff-astro-phase img {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.ff-astro-phase img:hover {
    transform: scale(4);
    transform-origin: bottom center;
    background: #fff;
    border: solid 1px #6c6c6c;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    z-index: 20;
    position: relative;
}

/* ======================================
   COLOR CODING
====================================== */

.ff-sunrise {
    color: #f59e0b;
}

.ff-sunset {
    color: #f97316;
}

.ff-moonrise {
    color: #64748b;
}

.ff-moonset {
    color: #94a3b8;
}