.main-egghatch {
    background-color: rgba(30, 30, 30, 0.85);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.main-egghatch:hover {
transform: translateY(-5px);
}

.egg-counter {
    border-radius: 10px;
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.sidebar-guide {
    color: #eee;
    font-size: 0.95rem;
}

.breeding-card {
    background-color: rgba(50, 50, 50, 0.8);
    padding: 8px 14px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.breeding-card:hover {
    background-color: rgba(70, 70, 70, 0.9);
    transform: scale(1.02);
}

.breeding-card a {
    text-decoration: none;
    color: #fafafa;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breeding-card .icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 4px;
}
