/* empty-state.css — shared empty/zero-data placeholder */

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    min-height: 320px;
}

.empty-state-orbit-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.55;
}

.empty-state-icon {
    width: 76px;
    height: 76px;
    object-fit: contain;
    filter: grayscale(0.25);
    position: relative;
    z-index: 2;
}

.empty-state-orbit {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: empty-state-orbit-spin 14s linear infinite;
}

@keyframes empty-state-orbit-spin {
    to { transform: rotate(360deg); }
}

.empty-state-tagline {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 1.4rem;
    max-width: 480px;
}

.empty-state-cta {
    background: rgba(99, 207, 73, 0.12);
    border: 1px solid rgba(99, 207, 73, 0.35);
    color: #c8e6c9;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.empty-state-cta:hover {
    background: rgba(99, 207, 73, 0.2);
    border-color: rgba(99, 207, 73, 0.55);
    color: #e8f5e9;
    transform: translateY(-1px);
}

.empty-state-cta i {
    margin-right: 4px;
}
